dev-master
9999999-devA Markdown to HTML converter written in Javascript
MIT
markdown md mdown
1.2.2
1.2.2.0A Markdown to HTML converter written in Javascript
MIT
markdown md mdown
A Markdown to HTML converter written in Javascript
, (*1)
Showdown is a Javascript Markdown to HTML converter, based on the original works by John Gruber. Showdown can be used client side (in the browser) or server side (with NodeJs)., (*3)
Check a live Demo here http://showdownjs.github.io/demo/, (*4)
You can download the latest release tarball directly from releases, (*5)
bower install showdown
npm install showdown
You can also use one of several CDNs available:, (*6)
github CDN, (*7)
https://cdn.rawgit.com/showdownjs/showdown/<version tag>/dist/showdown.min.js
cdnjs, (*8)
https://cdnjs.cloudflare.com/ajax/libs/showdown/<version tag>/showdown.min.js
Showdown has been tested successfully with:, (*9)
In theory, Showdown will work in any browser that supports ECMA 262 3rd Edition (JavaScript 1.5). The converter itself might even work in things that aren't web browsers, like Acrobat. No promises., (*10)
Showdown has been tested with node 0.8 and 0.10. However, it should work with previous versions, such as node 0.6., (*11)
If you're looking for showdown v<1.0.0, you can find it in the legacy branch., (*12)
You can check the full changelog, (*13)
Check our wiki pages for examples and a more in-depth documentation., (*14)
var showdown = require('showdown'), converter = new showdown.Converter(), text = '#hello, markdown!', html = converter.makeHtml(text);
var converter = new showdown.Converter(), text = '#hello, markdown!', html = converter.makeHtml(text);
Both examples should output..., (*15)
<h1 id="hellomarkdown">hello, markdown!</h1>
You can change some of showdown's default behavior through options., (*16)
Options can be set:, (*17)
Setting a "global" option affects all instances of showdown, (*18)
showdown.setOption('optionKey', 'value');
Setting a "local" option only affects the specified Converter object. Local options can be set:, (*19)
through the constructor, (*20)
var converter = new showdown.Converter({optionKey: 'value'});
through the setOption() method, (*21)
var converter = new showdown.Converter(); converter.setOption('optionKey', 'value');
Showdown provides 2 methods (both local and global) to retrieve previous set options., (*22)
// Global var myOption = showdown.getOption('optionKey'); //Local var myOption = converter.getOption('optionKey');
// Global var showdownGlobalOptions = showdown.getOptions(); //Local var thisConverterSpecificOptions = converter.getOptions();
You can get showdown's default options with:, (*23)
var defaultOptions = showdown.getDefaultOptions();
omitExtraWLInCodeBlocks: (boolean) [default false] Omit the trailing newline in a code block. Ex:, (*24)
This:, (*25)
<code><pre>var foo = 'bar'; </pre></code>
Becomes this:, (*26)
<code><pre>var foo = 'bar';</pre></code>
noHeaderId: (boolean) [default false] Disable the automatic generation of header ids. Setting to true overrides prefixHeaderId, (*27)
prefixHeaderId: (string/boolean) [default false] Add a prefix to the generated header ids. Passing a string will prefix that string to the header id. Setting to true
will add a generic 'section' prefix., (*28)
parseImgDimensions: (boolean) [default false] Enable support for setting image dimensions from within markdown syntax. Examples:, (*29)
 simple, assumes units are in px  sets the height to "auto"  Image with width of 80% and height of 5em
headerLevelStart: (integer) [default 1] Set the header starting level. For instance, setting this to 3 means that, (*30)
# foo
will be parsed as, (*31)
<h3>foo</h3>
simplifiedAutoLink: (boolean) [default false] Turning this on will enable GFM autolink style. This means that, (*32)
some text www.google.com
will be parsed as ````, (*33)
<, (*34)
p>some text www.google.com ```, (*35)
literalMidWordUnderscores: (boolean) [default false] Turning this on will stop showdown from interpreting underscores in the middle of words as <em>
and <strong>
and instead treat them as literal underscores., (*36)
Example:, (*37)
some text with__underscores__in middle
will be parsed as, (*38)
<p>some text with__underscores__in middle</p>
strikethrough: (boolean) [default false] Enable support for strikethrough syntax.
~~strikethrough~~
as <del>strikethrough</del>
, (*39)
tables: (boolean) [default false] Enable support for tables syntax. Example:, (*40)
| h1 | h2 | h3 | |:------|:-------:|--------:| | 100 | [a][1] | ![b][2] | | *foo* | **bar** | ~~baz~~ |
See the wiki for more info, (*41)
tablesHeaderId: (boolean) [default false] If enabled adds an id property to table headers tags., (*42)
ghCodeBlocks: (boolean) [default true] Enable support for GFM code block style., (*43)
tasklists:(boolean) [default false] Enable support for GFM takslists. Example:, (*44)
- [x] This task is done - [ ] This is still pending
Showdown also comes bundled with a Command Line Interface tool. You can check the CLI wiki page for more info, (*45)
ShowdownJS project also provides seamlessly integration with AngularJS via a "plugin". Please visit https://github.com/showdownjs/ngShowdown for more information., (*46)
If you're using TypeScript you maybe want to use the types from DefinitelyTyped, (*47)
Showdown doesn't sanitize the input. This is by design since markdown relies on it to allow certain features to be correctly parsed into HTML. This, however, means XSS injection is quite possible., (*48)
Please refer to the wiki article Markdown's XSS Vulnerability (and how to mitigate it) for more information., (*49)
Showdown allows additional functionality to be loaded via extensions. (you can find a list of known showdown extensions here), (*50)
var converter = new showdown.Converter({ extensions: 'twitter' });
var showdown = require('showdown'), myExtension = require('myExtension'), converter = new showdown.Converter({ extensions: ['myExtension'] });
A suite of tests is available which require node.js. Once node is installed, run the following command from the project root to install the dependencies:, (*51)
npm install
Once installed the tests can be run from the project root using:, (*52)
npm test
New test cases can easily be added. Create a markdown file (ending in .md
) which contains the markdown to test. Create a .html
file of the exact same name. It will automatically be tested when the tests are executed with mocha
., (*53)
If you wish to contribute please read the following quick guide., (*54)
You can request a new feature by submitting an issue. If you would like to implement a new feature feel free to issue a Pull Request., (*55)
PRs are awesome. However, before you submit your pull request consider the following guidelines:, (*56)
When issuing PRs that change code, make your changes in a new git branch based on master:, (*57)
git checkout -b my-fix-branch master
Documentation (i.e: README.md) changes can be made directly against master., (*58)
If we suggest changes then:, (*59)
git rebase master -i git push origin my-fix-branch -f
If you have time to contribute to this project, we feel obliged that you get credit for it. These rules enable us to review your PR faster and will give you appropriate credit in your GitHub profile. We thank you in advance for your contribution!, (*60)
We're looking for members to help maintaining Showdown. Please see this issue to express interest or comment on this note., (*61)
Full credit list at https://github.com/showdownjs/showdown/blob/master/CREDITS.md, (*62)
Showdown is powered by:br/
, (*63)
A Markdown to HTML converter written in Javascript
MIT
markdown md mdown
A Markdown to HTML converter written in Javascript
MIT
markdown md mdown