After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 679756 - Symbols between <pre> and </pre> are treated as markdown
Symbols between <pre> and </pre> are treated as markdown
Status: RESOLVED DUPLICATE of bug 678177
Product: doxygen
Classification: Other
Component: build
unspecified
Other Windows
: Normal critical
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2012-07-11 15:11 UTC by rolegic
Modified: 2012-11-18 11:13 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description rolegic 2012-07-11 15:11:38 UTC
Overview: 

Text between <pre> and </pre> tags is pre-processes according to the Markdown format

Steps to Reproduce: 

1) Text describing a folder tree:
<pre>
 + MyFolder
   + File1
   + File2
</pre>

2) run Doxygen (with default Doxyfile)

Actual Results: 

Foo.txt:9: warning: found </pre> at different nesting level (8) than expected (2)
Foo.txt:10: warning: end of comment block while expecting command </pre>

Html output:
<p>Text describing a folder tree:</p>
<pre><ul>
<li>Folder<ul>
<li>File1</li>
<li>File2

</li>
</ul>
</li>
</ul>
</pre>


Expected Results: 

Pre-processing should be disable in <pre>..</pre> block

Html output:
<p>Text describing a folder tree:</p>
<pre> + Folder
   + File1
   + File2
</pre>
Comment 1 Dimitri van Heesch 2012-07-11 18:06:36 UTC

*** This bug has been marked as a duplicate of bug 678177 ***