remark-capitalize
v1.1.0
Published
Transform all markdown titles with [title.sh](https://github.com/zeit/title)
Downloads
1,442
Keywords
Readme
Remark Capitalize
Transform all markdown titles with title.sh
Getting started
npm install --save remark-capitalize
Usage with MDX
mdx uses remark to transform an MDX document into JSX tags. It has support for passing plugins through the loader options:
const remarkCapitalize = require('remark-capitalize')
// part of webpack.config.js
{
test: /\.mdx$/,
use: [
defaultLoaders.babel,
{
loader: '@compositor/markdown-loader',
options: {
plugins: [remarkCapitalize]
}
}
]
}