Markdown formatting in block elements in WordPress

Markdown formatter in WordPress (Jetpack’s one) by default does not format parts inside block elements:

<div style="margin-left: 50px">
Thus, _this_ will **not** work!
</div>

But, with addition of markdown="1" you can enable the magic:

<div style="margin-left: 50px" markdown="1">
And _this_ **will** work!
</div>

I love simple solutions!

Test page for Markdown on Save Improved plugin

This is a dummy example post body, that can be used for testing Markdown rendering in any WordPress post or in any Markdown supporting page at all. I wrote it months ago and started using it for testing Markdown on Save Improved plugin. But then in turned out, that this quick sheet can be used virtually everwhere, where Markdown can be used. Just paste everything or selected part to test and verify Markdown in your blog, website, service etc.

Read More “Test page for Markdown on Save Improved plugin”