Skip to content

Instantly share code, notes, and snippets.

@antsa
Created April 2, 2011 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antsa/899631 to your computer and use it in GitHub Desktop.
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