yuntan / blackfriday

Blackfriday: a markdown processor for Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

yuntan/blackfriday

Markdown to HTML converter for SyaroNote

Forked from russross/blackfriday

Features

Math EXTENSION_LATEX_MATH

LaTeX inline and display math surrounded by $ or $$.

sample $x^y_z$ text _emphasis_

$$ x^y_z = X^Y_Z $$
<p>sample \(x^y_z\) text <em>emphasis</em></p>

<p>\[ x^y_z = X^Y_Z \]</p>

Task list

- [ ] checkbox
- [X] checked
<ul>
<li class="tasklist-item"><input type="checkbox" disabled><label>checkbox</label></li>
<li class="tasklist-item"><input type="checkbox" checked disabled><label>checked</label></li>
</ul>

Figure HTML_IMAGES_AS_FIGURE

![image caption](pass/to/image)
<p><figure><img src="pass/to/image" alt="image caption"><figcaption>image caption</figcaption></figure></p>

WikiLink EXTENSION_WIKI_LINK

[[WikiLink]] [normal link](http://google.co.jp)

* [Home](/)
* [[Sample Page]]
<p><a href="WikiLink">WikiLink</a> <a href="http://google.co.jp" target="_blank">normal link</a></p>

<ul>
<li><a href="/">Home</a></li>
<li><a href="Sample Page">Sample Page</a></li>
</ul>

License

Blackfriday is distributed under the Simplified BSD License

About

Blackfriday: a markdown processor for Go

License:Other


Languages

Language:Go 79.0%Language:HTML 21.0%