Start a new topic

Code blocks in posts are not fully verbatim

To reproduce the issue:
<pre>
<code>
std::vector<int> v;
</code>
</pre>


To get expected result:
<pre>
<code>
std::vector&lt;int&gt; v;
</code>
</pre>

Without <pre> is the same
Login or Signup to post a comment