Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Html Formatter
This discussion is related to the Html Formatter addon.
Comments
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
Test: <h1>Header 1</h1> <h2>Header 2</h2> <h3>Header 3</h3> <h4>Header 4</h4> <h5>Header 5</h5> <h6>Header 6</h6>
<div class="CommentBody" id="CommentBody_66788">Test:<br /><h >Header 1</h><br /><h >Header 2</h><br /><h >Header 3</h><br /><h >Header 4</h><br /><h >Header 5</h><br /><h >Header 6</h><br /><br /><code >Test:<br /><h1>Header 1</h1><br /><h2>Header 2</h2><br /><h3>Header 3</h3><br /><h4>Header 4</h4><br /><h5>Header 5</h5><br /><h6>Header 6</h6></code> </div>
And readable
<div class="CommentBody" id="CommentBody_66788">Test:<br /> <h >Header 1</h><br /> <h >Header 2</h><br /> <h >Header 3</h><br /> <h >Header 4</h><br /> <h >Header 5</h><br /> <h >Header 6</h><br /> <br /> <code >Test:<br /> <h1>Header 1</h1><br /> <h2>Header 2</h2><br /> <h3>Header 3</h3><br /> <h4>Header 4</h4><br /> <h5>Header 5</h5><br /> <h6>Header 6</h6></code> </div>
<span style='font-size:1.3em;'>What about span?</span>
Or span with predefined classes?
<span class='h1'>Or span with predefined classes?</span>
<!--more-->
it displays it as text, rather than hide it from display
Actually it should do a text replacement convert the more text into an anchor
So take this
/<!--more(.*?)-->/
and convert it into this
<a id="more" name="more"></a>
also support for will be nice. it should generate links like &Page=2
<blockquote><cite>Stanzi1791</cite> The problem I'm having with AutoP is that it adds <p> around the content of a quote like this: (Don't pay attention to the content of the quotes, I had to quote something.. ;)) <a href="http://www.vanslageren.nl/marleen/images/quotes1.jpg" >http://www.vanslageren.nl/marleen/images/quotes1.jpg</a></blockquote>
When the above code is put into a comment it comes out like so... But with the newline option OFF in HTML Formatter 2.2 the actual code is like below, with spaces added before the > to various opening tags. Why is this?
<blockquote ><cite >Stanzi1791</cite> The problem I'm having with AutoP is that it adds <p> around the content of a quote like this: (Don't pay attention to the content of the quotes, I had to quote something.. ;)) <a href="http://www.vanslageren.nl/marleen/images/quotes1.jpg" >http://www.vanslageren.nl/marleen/images/quotes1.jpg</a></blockquote>
From memory I think this happens with lists as well.