Check-in [3bc6d0b0c9]
Not logged in
Overview

SHA1 Hash:3bc6d0b0c913b5c0cb1cb0e55a0e96a7c12acb16
Date: 2008-07-27 21:02:10
User: eric
Comment:Reverse the check on inline formatting for indented paragraphs in wikiformat.c
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/wikiformat.c from [55aa7e0f7e] to [850d2b880e].

@@ -1005,11 +1005,11 @@
           blob_appendf(p->pOut, "<li value=\"%d\">", atoi(z));
         }
         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;
           p->wikiList = MARKUP_BLOCKQUOTE;