md-title

1.0.3 • Public • Published

md-title

NPM version Build Status Coveralls Status Dependency Status

get title from markdown article

Install

npm install --save md-title

Usage

import getTitle from 'md-title';
 
const input = `
# awesome *heading*
 
# second heading
 
paragragh`;
 
getTitle(input).text; // awesome heading
getTitle(input).html; // <h1>awesome <em>heading</em></h1>
getTitle(input).node; // mdast node, see remark API
getTitle('');         // undefined

API

getTitle(input)

input

Required
Type: String

Markdown string.

Related

  • md-article - extract data from your markdown article
    • md-content - get content from markdown article
    • md-date - get date from markdown article
    • md-tags - get tags from markdown article

License

MIT © Aleksandr Filatov

Package Sidebar

Install

npm i md-title

Weekly Downloads

6

Version

1.0.3

License

MIT

Last publish

Collaborators

  • greybax