]> Nishi Git Mirror - libw3.git/commitdiff
format fix
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Thu, 1 Feb 2024 08:18:32 +0000 (08:18 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Thu, 1 Feb 2024 08:18:32 +0000 (08:18 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@149 d27a3e52-49c5-7645-884c-6793ebffc270

Example/w3b/w3b.c

index bd273f0cf7a55f1ed21b4fef37e948d8f040d601..d74147871f6a3951bd3150bcd524dc7a89857617 100644 (file)
@@ -147,7 +147,7 @@ bool style = false;
 
 void html_handler(char* tagname, char* attr) {
        if(nl - start > termh - 3) return;
-       if(style){
+       if(style) {
                if(strcasecmp(tagname, "/style") == 0) style = false;
                return;
        }
@@ -207,7 +207,7 @@ void html_handler(char* tagname, char* attr) {
        } else if(strcasecmp(tagname, "/h6") == 0) {
                if(nl >= start) printf("\n");
                nl++;
-       }else if(strcasecmp(tagname, "style") == 0){
+       } else if(strcasecmp(tagname, "style") == 0) {
                style = true;
        } else if(strcasecmp(tagname, "img") == 0) {
                if(nl >= start) {