Diff
Not logged in

Differences From:

File src/wikiformat.c part of check-in [e01aa8cb4b] - Enhance the wiki rendering to support <div> markup. The closing </div> tag with and id= attribute can close off <verbatim> and <nowiki>. The wiki append page uses this to prevent unclosed tags from messing up the rendering of subsequent comments. by drh on 2008-07-17 15:49:24. [view]

To:

File src/wikiformat.c part of check-in [3bc6d0b0c9] - Reverse the check on inline formatting for indented paragraphs in wikiformat.c by eric on 2008-07-27 21:02:10. [view]

@@ -1006,9 +1006,9 @@
         }
         break;
       }
       case TOKEN_INDENT: {
-        if( inlineOnly ){
+        if( !inlineOnly ){
           assert( p->wikiList==0 );
           pushStack(p, MARKUP_BLOCKQUOTE);
           blob_append(p->pOut, "<blockquote>", -1);
           p->wantAutoParagraph = 0;