Differences From Artifact [bc2d5a091f]:
- File src/wikiformat.c — part of check-in [05a53dc06f] at 2012-11-22 14:03:53 on branch trunk — Use the new WIKI_LINKSONLY rendering option for check-in comments on the timeline when the "plain text comments" option is enabled. (user: drh size: 62126)
To Artifact [b8a51f4f41]:
- File src/wikiformat.c — part of check-in [2c6fa9c3b0] at 2012-11-22 23:35:57 on branch trunk — Be consistent about display of check-in comments as either text/plain or text/x-fossil-wiki. When the user configures text/plain, use that format everywhere. (user: drh size: 62308) [more...]
| ︙ | |||
1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 | 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 | + + + + + + + + + + |
endAutoParagraph(&renderer);
while( renderer.nStack ){
popStack(&renderer);
}
blob_append(renderer.pOut, "\n", 1);
free(renderer.aStack);
}
/*
** Send a string as wiki to CGI output.
*/
void wiki_write(const char *zIn, int flags){
Blob in;
blob_init(&in, zIn, -1);
wiki_convert(&in, 0, flags);
blob_reset(&in);
}
/*
** COMMAND: test-wiki-render
**
** %fossil test-wiki-render FILE [OPTIONS]
**
** Options:
|
| ︙ |