vmg / sundown

Standards compliant, fast, secure markdown processing library in C
1.99k stars 385 forks source link

Escape html inside table of contents. #90

Closed gregleaver closed 12 years ago

gregleaver commented 12 years ago

The contents of the table of contents was not being escaped.

Example input: # This & That

Was outputting:

<ul>
<li>
<a href="#toc_0">This & That</a>
</li>
</ul>

Now outputs:

<ul>
<li>
<a href="#toc_0">This &amp; That</a>
</li>
</ul>
vmg commented 12 years ago

Right on! Cheers!