Cocoanetics / DTMarkdownParser

An event-based parser for markdown text
BSD 2-Clause "Simplified" License
197 stars 15 forks source link

SimpleHTMLGenerator doesn’t escape angle brackets in code blocks #7

Closed JanX2 closed 10 years ago

JanX2 commented 10 years ago

https://github.com/JanX2/google-diff-match-patch-Objective-C/blob/master/README.markdown

 <pre><code>#import <DiffMatchPatch/DiffMatchPatch.h>
  </code></pre>

instead of

  <pre><code>#import &lt;DiffMatchPatch/DiffMatchPatch.h&gt;
  </code></pre>
JanX2 commented 10 years ago

Fixed in 7981fa38.