Diff
Not logged in

Differences From:

File src/wikiformat.c part of check-in [dbda8d6ce9] - Initial check-in of m1 sources. by drh on 2007-07-21 14:10:57. [view]

To:

File src/wikiformat.c part of check-in [22c1ac41d4] - Add separate "clone" permissions. Previously, one needed "History" premission in order to clone. But sometimes we want to grant clone without granting history. by drh on 2007-08-23 19:52:19. [view]

@@ -525,11 +525,13 @@
   } aAttr[10];
 };
 
 /*
-** Parse the markup in z[] into the p structure.  The content
-** of z[] is modified by converting characters to lowercase
-** and by inserting some "\000" characters.
+** z[] is an HTML markup element - something that begins with '<'.
+** Parse this element into the p structure.
+**
+** The content of z[] might be modified by converting characters
+** to lowercase and by inserting some "\000" characters.
 */
 static void parseMarkup(ParsedMarkup *p, char *z){
   int i, c;
   char *zTag, *zValue;
@@ -701,8 +703,11 @@
 }
 
 /*
 ** Add missing markup in preparation for writing text.
+**
+** "Missing" markup are things like start tags for table rows
+** or table columns or paragraphs that are omitted from input.
 */
 static void addMissingMarkup(Renderer *p){
   /* TBD */
 }