remark-helpers

Helper methods for remark

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
remark-helpers
730.0.67 years ago8 years agoMinified + gzip package size for remark-helpers in KB

Readme

remark-helpers
!NPM versionnpm-imagenpm-url !Build Statustravis-imagetravis-url !Coveralls Statuscoveralls-imagecoveralls-url !Dependency Statusdepstat-imagedepstat-url !DevDependency Statusdepstat-dev-imagedepstat-dev-url Basically, with remark-helpers you can find desire elements in markdown document and process them in html or plaintext format. Bunch of helpers for working with remarkremark-readme. Very important to notice, that this package is very simple and doesn’t contain any smart and/or complicated logic, that’s why it’s tightly coupled with remark API for AST tree (MDAST)remark-readme. Check it out first.

Install

``` npm install --save remark-helpers ```

Usage

```js var md = require('remark-helpers'); md.ast('# title'); // mdast format see more https://github.com/wooorm/mdast md.html(*italic*); //

italic

md.text('plaintext'); // plaintext md.md(somemdasttree); // markdown text ``` Look into tests for more examples.

API

html(input)

Return html.
input
Type: string / AST

text(input)

Return plain text.
input
Type: string / AST

ast(input)

Return AST tree for current text.
input
Type: string

md(input)

Return markdown for current input text.
input
Type: string / AST

Bunch of shortcut helpers. Based on MDAST

```js const isType = (node, type) => node.type === type; const isDepth = (node, depth) => node.depth === depth; const hasChildren = (node) => node.children ? true : false; const isRoot = node => isType(node, "root"); const isParagraph = node => isType(node, "paragraph"); const isBlockquote = node => isType(node, 'blockquote'); const isHeading = node => isType(node, 'heading'); const isCode = node => isType(node, 'code'); const isInlineCode = node => isType(node, 'inlineCode'); const isYaml = node => isType(node, 'yaml'); const isHtml = node => isType(node, 'html'); const isList = node => isType(node, 'list'); const isListItem = node => isType(node, 'listItem'); const isTable = node => isType(node, 'table'); const isTableRow = node => isType(node, 'tableRow'); const isTableCell = node => isType(node, 'tableCell'); const isThematicBreak = node => isType(node, 'thematicBreak'); const isBreak = node => isType(node, 'break'); const isEmphasis = node => isType(node, 'emphasis'); const isStrong = node => isType(node, 'strong'); const isDelete = node => isType(node, 'delete'); const isLink = node => isType(node, 'link'); const isImage = node => isType(node, 'image'); const isFootnote = node => isType(node, 'footnote'); const isLinkReference = node => isType(node, 'linkReference'); const isImageReference = node => isType(node, 'imageReference'); const isFootnoteReference = node => isType(node, 'footnoteReference'); const isDefinition = node => isType(node, 'definition'); const isFootnoteDefinition = node => isType(node, 'footnoteDefinition'); const isText = node => isType(node, 'Text'); ```

License

MIT © Aleksandr Filatov