showdown/index.html

88 lines
3.5 KiB
HTML
Raw Normal View History

2015-04-30 09:02:53 +08:00
<!DOCTYPE html>
2015-05-29 23:38:28 +08:00
<html>
2015-04-30 09:02:53 +08:00
<head>
2015-05-29 23:38:28 +08:00
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="Showdown : A JavaScript markdown converter. Extensible. Truthful.">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Showdown</title>
2015-04-30 09:02:53 +08:00
</head>
2015-05-29 23:38:28 +08:00
2015-04-30 09:02:53 +08:00
<body>
2015-05-29 23:38:28 +08:00
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/showdownjs/showdown">View on GitHub</a>
<h1 id="project_title">Showdown</h1>
<h2 id="project_tagline">A JavaScript markdown converter. Extensible. Truthful.</h2>
<section id="downloads">
<a class="zip_download_link" href="https://github.com/showdownjs/showdown/zipball/master">Download this project as a .zip file</a>
<a class="tar_download_link" href="https://github.com/showdownjs/showdown/tarball/master">Download this project as a tar.gz file</a>
</section>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<p><strong>Showdown</strong> is a markdown parser and html converter with an attempt to stay <a href="https://github.com/showdownjs/showdown/wiki/divergences">as close as possible</a> to the <a href="http://web.archive.org/web/20110111145019/http://attacklab.net/showdown/">original</a>, while providing extensibility through a simple yet efficient <a href="https://github.com/showdownjs/showdown/wiki/extensions">plugin</a> facility. Tables, GitHub flavoured, and what not.</p>
2015-04-30 09:02:53 +08:00
<h2>
<a id="get-it" class="anchor" href="#get-it" aria-hidden="true"><span class="octicon octicon-link"></span></a>Get It</h2>
<pre><code>npm install showdown
# or
bower install showdown
</code></pre>
<h2>
<a id="use-it" class="anchor" href="#use-it" aria-hidden="true"><span class="octicon octicon-link"></span></a>Use It</h2>
<pre><code>var Showdown = require('showdown');
2015-05-29 23:38:07 +08:00
var converter = new showdown.Converter();
2015-04-30 09:02:53 +08:00
converter.makeHtml('#hello markdown!');
// &lt;h1 id="hellomarkdown"&gt;hello markdown!&lt;/h1&gt;
</code></pre>
<h2>
<a id="need-help" class="anchor" href="#need-help" aria-hidden="true"><span class="octicon octicon-link"></span></a>Need Help?</h2>
<ul>
2015-05-30 05:26:43 +08:00
<li><a href="https://github.com/showdownjs/showdown/blob/master/CHANGELOG.md">Change Log</a></li>
2015-04-30 09:02:53 +08:00
<li><a href="https://github.com/showdownjs/showdown/wiki">Wiki</a></li>
<li><a href="https://groups.google.com/forum/#!forum/showdownjs">Google Group</a></li>
<li><a href="https://github.com/showdownjs/showdown/issues">Issues</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/showdown">stackoverflow</a></li>
</ul>
<h2>
<a id="credits" class="anchor" href="#credits" aria-hidden="true"><span class="octicon octicon-link"></span></a>Credits</h2>
<ul>
<li><a href="http://web.archive.org/web/20110111145019/http://attacklab.net/showdown/">Showdown Copyright (c) 2007 John Fraser</a></li>
<li><a href="http://daringfireball.net/projects/markdown/">Original Markdown Copyright (c) 2004-2005 John Gruber</a></li>
</ul>
2015-05-29 23:38:28 +08:00
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">Showdown maintained by <a href="https://github.com/showdownjs">showdownjs</a></p>
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
2015-04-30 09:02:53 +08:00
</footer>
2015-05-29 23:38:28 +08:00
</div>
2015-04-30 09:02:53 +08:00
2015-05-29 23:38:28 +08:00
2015-04-30 09:02:53 +08:00
</body>
</html>