Skip to content

Instantly share code, notes, and snippets.

@antsa
Created April 2, 2011 16:44
Show Gist options
  • Select an option

  • Save antsa/899631 to your computer and use it in GitHub Desktop.

Select an option

Save antsa/899631 to your computer and use it in GitHub Desktop.
// Maruku (https://github.com/nex3/maruku)
.content
:markdown
## Heading
Some text here
// =>
<div class='content'>
<h2 id='heading'>Heading</h2>
<p>Some text here</p>
</div>
// Rdiscount (https://github.com/rtomayko/rdiscount)
.content
:markdown
## Heading
Some text here
// =>
<div class='content'>
<h2>Heading</h2>
<p>Some text here</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment