remarkable-admonitions
Version:
A remarkable plugin to add admonitions support
90 lines (67 loc) • 2.75 kB
Markdown
# remarkable-admonitions
[](https://travis-ci.com/favoloso/remarkable-admonitions)
[](https://codecov.io/gh/favoloso/remarkable-admonitions)
[](https://www.npmjs.com/package/remarkable-admonitions)
Adds admonitions parsing support to Remarkable. (There's also a [React component](https://github.com/nebrelbug/react-admonitions))
<img src="assets/preview.png" width="680" />
## Installation
With npm:
```sh
npm install --save remarkable-admonitions
```
or with Yarn:
```sh
yarn add remarkable-admonitions
```
## Usage
```js
import Remarkable from 'remarkable';
const md = new Remarkable();
import admonitions from 'remarkable-admonitions';
md.use(admonitions());
md.render(`
:::caution
Beware Ogre
:::
`);
/* ->
<div class="admonition admonition-caution">
<div class="admonition-heading">
<h5><div class="admonition-icon">🔥</div> caution</h5>
</div>
<div class="admonition-content">
<p>Beware Ogre</p>
</div>
</div>
*/
```
Supported admonition types are: `caution`, `note`, `important`, `tip`,
`warning`.
By default block title is the admonition type. You can provide a custom title
after the opening tag:
```md
:::note This is my custom title
A note.
:::
```
### With Docusaurus
If you are using [Docusaurus](https://docusaurus.io), you can load the plugin
in `siteConfig.js`:
```js
const siteConfig = {
// ...
markdownPlugins: [
// Highlight admonitions.
require('remarkable-admonitions')({ icon: 'svg-inline' })
]
};
```
There is a style developed to match its visual appearence (the same you can see
in the preview image up here). Due to Docusaurus [CSS loading system](https://docusaurus.io), you need to download the css from
[docusaurus-admonitions.css](styles/docusaurus-admonitions.css) and place it
into your `custom/` folder.
## Options
You may configure this plugin with the following options:
| Option | Default | Description |
| ---------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **`icon`** | `emoji` | Allows to use a different method to render admonition icons. By default it uses `emoji` (unicode Emojis). Choose `svg-inline` to use [Octicons](https://octicons.github.com). |