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.
[bug] Markdown 1.0.1c problems with quoting, indentation in IE
Andy K
✭
Hey all, hoping that Michel Fortin is hanging around.
If you have a forum with Markdown extension running, you can see the following:
1: Put a quote using the greater than sign like this:
> This is a Quote in Markdown.
Then add a line of text like this. Repeat:
You will see that each time the line of text after the quote indents to the left a little more, and by the third or fourth quote the rest of the text and layout of the thread is pretty much broken when viewing using IE. There is no problem with Mozilla.
Fixable? Just putting it on the radar.
Thanks!
-Andy
If you have a forum with Markdown extension running, you can see the following:
1: Put a quote using the greater than sign like this:
> This is a Quote in Markdown.
Then add a line of text like this. Repeat:
> This is a Quote in Markdown.
Then add a line of text like this. Repeat:
> This is a Quote in Markdown.
Then add a line of text like this. Repeat:
> This is a Quote in Markdown.
Then add a line of text like this. Repeat:
You will see that each time the line of text after the quote indents to the left a little more, and by the third or fourth quote the rest of the text and layout of the thread is pretty much broken when viewing using IE. There is no problem with Mozilla.
Fixable? Just putting it on the radar.
Thanks!
-Andy
0
This discussion has been closed.
Comments
I tested with IE 6.0, and was not able to duplicate it.
Test is here. Does it happen there with your IE? If so, what version?
.CommentBody blockquote{}
:padding:8px 16px; border-left: 6px solid #ACBEDF;
Remove either, and its OK. Oddly, you can also change the top-bottom padding (8px) to zero, and the bug disappears.
EDIT: Bug is known as Magik Creeping Text and can be fixed either by adding
display: inline-block;
or a bottom border of at least one pixel.Silly IE.