Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

injectmd

tabdigital2.4kMIT1.0.0

Inject markdown into markdown

markdown, md, inject, combine, transform

readme

node-injectmd

npm version build status test coverage downloads js-standard-style

Inject markdown into markdown.

Usage

Given some markdown README.md:

<!--START main-header-->
<!--END main-header-->

## another section

Inject a header at <!--main-header-->:

printf '# best header ever' | injectmd -t main-header -i README.md

Creates:

<!--START main-header-->
# best header ever
<!--END main-header-->

## another section

Installation

$ npm install node-injectmd

injectmd works well with any package / program that outputs Markdown to stdout.

Package Purpose
https://www.npmjs.com/package/markdown-toc Add a table of contents
https://www.npmjs.com/package/swagger-to-md Add Swagger specs

License

MIT