vote up 0 vote down star

Markdown syntax is often convenient to write blogs and comments;

But at times it interferes with the content when you would want to write a simple html

Is there a tag / syntax that asks markdown to ignore that part like the pre html tag?

If pre works, what if the markdown part needs to include an html tag?

flag

2 Answers

vote up 2 vote down check

The original implementation of Markdown (by Gruber) and PHP Markdown don't format inside block-level HTML elements, so you can use <div>, for example:

Markdown text.

More markdown text.

<div>
Markdown ignores inside the div, you can do all sorts of crazy stuff:
<a href="http://www.stackoverflow.com">Stack Overflow</a>.
<blink>Is blink still supported?</blink>
</div>

Yet more markdown text.

Will get rendered as:

<p>Markdown text.</p>

<p>More markdown text.</p>

<div>
Markdown ignores inside the div, you can do all sorts of crazy stuff:
<a href="http://www.stackoverflow.com">Stack Overflow</a>.
<blink>Is blink still supported?</blink>
</div>

<p>Yet more markdown text.</p>
link|flag
Nope, It does. Just verified – becomingGuru Mar 31 at 14:01
Which implementation are you using? – Can Berk Güder Mar 31 at 14:05
I updated the first paragraph. – Can Berk Güder Mar 31 at 14:07
Tested with both Markdown.pl and PHP Markdown, btw. – Can Berk Güder Mar 31 at 14:08
Yup, Actually works. Thanks! doesnt perhaps work when the <div> is enclosed within a <code> – becomingGuru Mar 31 at 14:33
vote up 1 vote down

At least here on Stack Overflow, the ... <pre> HTML tag works just fine for that purpose. It also formats your text like a browser would:

This is pre-formatted, so in here I can /slash/ and *star* stuff
without issues, and [[square brackets]] [are] just brackets.
link|flag
Also, use backticsk (`) for shorter snippets inside larger formatted areas. – Joel Coehoorn Mar 31 at 14:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.