]> Nishi Git Mirror - libw3.git/commitdiff
w3b patch
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Fri, 2 Feb 2024 04:51:23 +0000 (04:51 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Fri, 2 Feb 2024 04:51:23 +0000 (04:51 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@158 d27a3e52-49c5-7645-884c-6793ebffc270

Example/w3b/w3b.c
W3Version.h.p

index d74147871f6a3951bd3150bcd524dc7a89857617..5797e7d308ca5c9d7d3e30181c24e0630cf9d8cc 100644 (file)
@@ -207,6 +207,32 @@ void html_handler(char* tagname, char* attr) {
        } else if(strcasecmp(tagname, "/h6") == 0) {
                if(nl >= start) printf("\n");
                nl++;
+       } else if(strcasecmp(tagname, "p") == 0) {
+               if(nl >= start) printf("\n");
+               nl++;
+       } else if(strcasecmp(tagname, "/p") == 0) {
+               if(nl >= start) printf("\n");
+               nl++;
+       } else if(strcasecmp(tagname, "dl") == 0) {
+               if(nl >= start) printf("\n");
+               nl++;
+       } else if(strcasecmp(tagname, "/dl") == 0) {
+               if(nl >= start) printf("\n");
+               nl++;
+       } else if(strcasecmp(tagname, "dt") == 0) {
+               if(nl >= start) printf("\n");
+               nl++;
+       } else if(strcasecmp(tagname, "/dt") == 0) {
+               if(nl >= start) printf("\n");
+               nl++;
+       } else if(strcasecmp(tagname, "dd") == 0) {
+               if(nl >= start) printf("\n");
+               nl++;
+               printf("    ");
+               x += 4;
+       } else if(strcasecmp(tagname, "/dd") == 0) {
+               if(nl >= start) printf("\n");
+               nl++;
        } else if(strcasecmp(tagname, "style") == 0) {
                style = true;
        } else if(strcasecmp(tagname, "img") == 0) {
index 7e1cd2f5d81ac8dd05cf925de35ea151466885e8..2a5028fef526c72317d2b81b1defb1b6262a3801 100644 (file)
@@ -6,7 +6,7 @@
 extern "C" {
 #endif
 
-#define LIBW3_VERSION "2.2E" \
+#define LIBW3_VERSION "2.2F" \
 SUFFIX
 
 #ifdef __cplusplus