Differences From:
File
src/wikiformat.c
part of check-in
[454515642c]
- The verbatim PRE tags now have class=fossil-verbatim to allow customization of the verbatim look/feel.
by
stephan on
2008-05-16 15:44:18.
[view]
To:
File
src/wikiformat.c
part of check-in
[bb542b80c7]
- renamed fossil-verbatim to verbatim for consistency with other CSS elements. Added a reasonable default .verbatim entry.
by
stephan on
2008-05-16 15:54:00.
Also file
src/wikiformat.c
part of check-in
[81eb00def7]
- Merge in stephan's fork.
by
drh on
2008-05-16 16:01:06.
[view]
@@ -1022,9 +1022,9 @@
}
p->inVerbatim = 1;
p->preVerbState = p->state;
p->state &= ~ALLOW_WIKI;
- blob_append(p->pOut, "<pre class='fossil-verbatim'>",-1);
+ blob_append(p->pOut, "<pre class='verbatim'>",-1);
p->wantAutoParagraph = 0;
}else if( markup.iType==MUTYPE_LI ){
if( backupToType(p, MUTYPE_LIST)==0 ){
pushStack(p, MARKUP_UL);