Created
April 2, 2011 16:44
-
-
Save antsa/899631 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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