GNOME Bugzilla – Bug 726722
Blockquote followed by text inserts an extra paragraph
Last modified: 2014-04-22 07:44:38 UTC
Created attachment 272395 [details] Example file. When inserting a blockquote with a '>' character and appending text after it in a markdown file, doxygen inserts an extra empty paragraph (<p></p>) after the blockquote. Normally not a problem, but I style the blockquote with padding and background color and this makes the empty paragraph visible. Example input md file: Title {#mainpage} ===== Some text here. > This is important More text This will create a html blockquote tag with two paragraphs: <div class="textblock"> <p>Some text here.</p> <blockquote class="doxtable"> <p>This is important</p> <p></p> </blockquote> <p>More text</p> </div> But I expect it to be without the empty paragraph: <div class="textblock"> <p>Some text here.</p> <blockquote class="doxtable"> <p>This is important</p> </blockquote> <p>More text</p> </div> When I ommit the 'More text' line the result is: <div class="textblock"> <p>Some text here.</p> <blockquote class="doxtable"> <p>This is important</p> </blockquote> </div>
Created attachment 272396 [details] Result
I've just pushed a proposed patch to github (pull request 143)
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.7. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant (preferrably in the form of a self-contained example).
Fixed! Thanks.