Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Reverse the check on inline formatting for indented paragraphs in wikiformat.c |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3bc6d0b0c913b5c0cb1cb0e55a0e96a7 |
User & Date: | eric 2008-07-27 21:02:10.000 |
References
2008-07-27
| ||
21:57 | • New ticket [33949929] Fossil on windows fails on path/files with non US-ASCII characters in them.. ... (artifact: 5de88b3c user: anonymous) | |
Context
2008-07-29
| ||
13:07 | Documentation updates. ... (check-in: 9d10726d user: drh tags: trunk) | |
2008-07-27
| ||
21:02 | Reverse the check on inline formatting for indented paragraphs in wikiformat.c ... (check-in: 3bc6d0b0 user: eric tags: trunk) | |
18:35 |
Change behavior of Fossil's tag handling.
| |
Changes
Changes to src/wikiformat.c.
︙ | ︙ | |||
1003 1004 1005 1006 1007 1008 1009 | startAutoParagraph(p); pushStack(p, MARKUP_LI); blob_appendf(p->pOut, "<li value=\"%d\">", atoi(z)); } break; } case TOKEN_INDENT: { | | | 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 | startAutoParagraph(p); pushStack(p, MARKUP_LI); blob_appendf(p->pOut, "<li value=\"%d\">", atoi(z)); } break; } case TOKEN_INDENT: { if( !inlineOnly ){ assert( p->wikiList==0 ); pushStack(p, MARKUP_BLOCKQUOTE); blob_append(p->pOut, "<blockquote>", -1); p->wantAutoParagraph = 0; p->wikiList = MARKUP_BLOCKQUOTE; } break; |
︙ | ︙ |