A JavaScript library that allows you to use Markdown within HTML. Useful when you want to take notes in Markdown while writing HTML.
Official website:
Usage
Add <script src=โhttp://strapdownjs.com/v/0.2/strapdown.jsโ></script> to your HTML,
create <xmp></xmp> tags inside the body, and write Markdown inside them.
<!DOCTYPE html>
<html lang="ja">
<head>
</head>
<body>
<xmp>
# 1
## 2
* foo
* bar
`code`
</xmp>
<script src="http://strapdownjs.com/v/0.2/strapdown.js"></script>
</body>
</html>
This will render the HTML.