Tiny helpers for creating consistenly-formatted markdown snippets.
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your â¤ï¸ and support.
InstallInstall with npm:
Usage$ npm install --save markdown-utils
API .blockquoteconst mdu = require('markdown-utils');
Create a markdown-formatted blockquote.
Params
str
{String}Example
.codeutils.blockquote('This is a blockquote');
Create a markdown-formatted <code></code>
snippet.
Params
str
{String}Example
.delutils.code('const foo = bar;');
Create markdown-formatted deleted text: ~~text~~
.
Params
str
{String}Example
.emCreate a markdown-formatted em.
Params
str
{String}Example
.hutils.em('This is emphasized');
Create a markdown-formatted heading.
Params
str
{String}level
{Number}Example
.h1utils.h(1, 'This is a heading');
Create a markdown-formatted h1 heading.
Params
str
{String}Example
.h2utils.h1('This is a heading');
Create a markdown-formatted h2 heading.
Params
str
{String}Example
.h3utils.h2('This is a heading');
Create a markdown-formatted h3 heading.
Params
str
{String}Example
.h4utils.h3('This is a heading');
Create a markdown-formatted h4 heading.
Params
str
{String}Example
.h5utils.h4('This is a heading');
Create a markdown-formatted h5 heading.
Params
str
{String}Example
.h6utils.h5('This is a heading');
Create a markdown-formatted h6 heading.
Params
str
{String}Example
.headingutils.h6('This is a heading');
Create a markdown-formatted heading.
Params
str
{String}level
{Number}Example
.hrutils.heading('This is a heading', 1);
Create a markdown-formatted horizontal rule.
Params
str
{String}: Alternate string to use. Default is ***
to avoid collision with ---
which is commonly used for front-matter.Example
.linkCreate a markdown-formatted link from the given values.
Params
anchor
{String}href
{String}title
{String}Example
.anchorutils.link('fs-utils', 'https://github.com/assemble/fs-utils', 'hover title');
Create a markdown-formatted anchor link from the given values.
Params
anchor
{String}href
{String}title
{String}Example
.referenceutils.anchor('embed', 'assemble/handlebars-helpers/lib/code.js', 25, 'v0.6.0');
Create a markdown-formatted reference link from the given values.
Params
id
{String}url
{String}title
{String}Example
.imageutils.reference('template', 'https://github/jonschlinkert/template', 'Make stuff!');
Create a markdown-formatted image from the given values.
Params
alt
{String}src
{String}title
{String}Example
.badgeutils.image(alt, src);
Â
utils.image(alt, src, title);
Create a markdown-formatted badge.
Params
alt
{String}img_url
{String}url
{String}Example
.liutils.badge(alt, img_url, url);
Returns a function to generate a plain-text/markdown list-item, allowing options to be cached for subsequent calls.
Params
options
{String}nobullet
{Boolean}: Pass true if you only want the list iten and identation, but no bullets.indent
{String}: The amount of leading indentation to use. default is ``.chars
{String|Array}: If a string is passed, fill-range will be used to generate an array of bullets (visit fill-range to see all options.) Or directly pass an array of bullets, numbers, letters or other characters to use for each list item. Default ['-', '*', '+', '~']
fn
{Function}: pass a function fill-range to modify the bullet for an item as it's generated.Example
.preconst li = listitem(options);
Â
li(0, 'Level 0 list item');
Â
li(1, 'Level 1 list item');
Â
li(2, 'Level 2 list item');
Create a markdown-formatted <pre><code></code></pre>
snippet with or without lang.
Results in:
Params
str
{String}language
{String}Examples
utils.pre('const foo = bar;');
.gfm<pre>
const foo = bar;
</pre>
Create a markdown-formatted code snippet with or without lang
.
Results in:
Params
str
{String}language
{String}Examples
.strongutils.gfm('const foo = bar;', 'js');
Create markdown-formatted bold text.
Params
str
{String}Example
.todoutils.strong('This is bold');
Create a markdown-formatted todo item.
Params
str
{String}Example
About Contributingutils.todo('this is a todo.');
Â
utils.todo('this is a completed todo.', true);
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Running TestsRunning and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
Building docs$ npm install && npm test
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
Related projects$ npm install -g verbose/verb#dev verb-generate-readme && verb
You might also be interested in these projects:
Jon Schlinkert
LicenseCopyright © 2018, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on July 05, 2018.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4