Overview
| Artifact ID: | e78570a0620a28947a263fb8e7dcebd5a72f4971 |
|---|---|
| Ticket: | 0fd3c7d243e74adf4d51d6f36d7d5d294245bac4
wiki inserts P tags in tables |
| User & Date: | anonymous 2010-12-27 13:01:03 |
Changes
- Appended to comment:
<hr /><i>anonymous added on 2010-12-27 13:01:03:</i><br /> The following small patch seems to fix the problem: <pre> Index: src/wikiformat.c =================================================================== --- src/wikiformat.c +++ src/wikiformat.c @@ -1404,10 +1404,11 @@ if( backupToType(p, MUTYPE_TABLE|MUTYPE_TR) ){ if( stackTopType(p)==MUTYPE_TABLE ){ pushStack(p, MARKUP_TR); blob_append(p->pOut, "<tr>", 4); } + p->wantAutoParagraph = 0; pushStack(p, markup.iCode); renderMarkup(p->pOut, &markup); } }else if( markup.iType==MUTYPE_HYPERLINK ){ </pre> - resolution changed to: "Open"