# remark-capitalize

> Transform all markdown titles with [title.sh](https://github.com/zeit/title)

Latest version **1.1.0** (published 2018-07-11) · 0 weekly downloads

## Install

```sh
npm install remark-capitalize
pnpm add remark-capitalize
yarn add remark-capitalize
bun add remark-capitalize
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2018-07-11 |
| First published | 2018-03-20 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 2.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 31 |
| Maintainers | arunoda, codetheory, iamevilrabbit, igorklopov, jamo, javivelasco, leo, lipp, matheuss, nkzawa, olliv, pranaygp, qix, rauchg, sergiodxa, timneutkens, tootallnate, zeit-admin, zeit-bot |

## Links

- npm: https://www.npmjs.com/package/remark-capitalize
- Repository: https://github.com/zeit/remark-capitalize
- Homepage: https://github.com/zeit/remark-capitalize#readme
- Issues: https://github.com/zeit/remark-capitalize/issues
- npm.io page: https://npm.io/package/remark-capitalize

## Dependencies (2)

- [title](https://npm.io/package/title.md) 3.3.1
- [unist-util-visit](https://npm.io/package/unist-util-visit.md) 1.3.1

## Recent versions

- 1.1.0 (latest) — 2018-07-11
- 1.0.0 — 2018-04-29
- 0.0.1 — 2018-03-20

## README

# Remark Capitalize

Transform all markdown titles with [title.sh](https://github.com/zeit/title)

## Getting started

```
npm install --save remark-capitalize
```

### Usage with MDX

[mdx](https://github.com/mdx-js/mdx) uses remark to transform an MDX document into JSX tags. It has support for passing plugins through the loader options:

```js
const remarkCapitalize = require('remark-capitalize')
// part of webpack.config.js
{
  test: /\.mdx$/,
  use: [
    defaultLoaders.babel,
    {
      loader: '@compositor/markdown-loader',
      options: {
        plugins: [remarkCapitalize]
      }
    }
  ]
}
```

---
_Source: https://npm.io/package/remark-capitalize · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
