diff options
Diffstat (limited to 'src/doc.l')
-rw-r--r-- | src/doc.l | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -2043,7 +2043,14 @@ DOCPARAM ([a-z_A-Z0-9:\<\>\=\.\-]+)|("\"".*"\"") } else { - outDoc->newParagraph(); + if (insidePre) + { + outDoc->docify(yytext); + } + else + { + outDoc->newParagraph(); + } } if (inBlock()) endBlock(); } |