Differences From Artifact [7a2fef1bdb]:
- File src/wikiformat.c — part of check-in [2353aa9a2f] at 2010-09-13 16:44:48 on branch wolfgangFormat2CSS — ended some paragraphs for elements, not allowed in p for xhtml (user: wolfgang size: 51042)
To Artifact [f777e08880]:
- File src/wikiformat.c — part of check-in [44e6ae4f9a] at 2010-09-13 19:05:59 on branch wolfgangFormat2CSS — prevent generation of <p><p> (user: wolfgang size: 51082)
| ︙ | ︙ | |||
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 |
}
if ( markup.iCode==MARKUP_HR
|| markup.iCode==MARKUP_H1
|| markup.iCode==MARKUP_H2
|| markup.iCode==MARKUP_H3
|| markup.iCode==MARKUP_H4
|| markup.iCode==MARKUP_H5
)
endAutoParagraph(p);
if( (markup.iType & MUTYPE_STACK )!=0 ){
pushStack(p, markup.iCode);
}
renderMarkup(p->pOut, &markup);
}
| > | 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 |
}
if ( markup.iCode==MARKUP_HR
|| markup.iCode==MARKUP_H1
|| markup.iCode==MARKUP_H2
|| markup.iCode==MARKUP_H3
|| markup.iCode==MARKUP_H4
|| markup.iCode==MARKUP_H5
|| markup.iCode==MARKUP_P
)
endAutoParagraph(p);
if( (markup.iType & MUTYPE_STACK )!=0 ){
pushStack(p, markup.iCode);
}
renderMarkup(p->pOut, &markup);
}
|
| ︙ | ︙ |