Update markdownit references (#2720)

@nuxt/markdownit was broken so I updated these references to @nuxtjs/markdownit
This commit is contained in:
Ferenc Sticza 2019-10-01 23:04:40 +02:00 committed by Tom Rutgers
parent 58164cb75f
commit f328a274e7

View File

@ -206,14 +206,14 @@ Now in your template, you can access whatever properties you need.
<script>
```
If you have Markdown in your content, you can use the `@nuxt/markdownit` module to render that.
If you have Markdown in your content, you can use the `@nuxtjs/markdownit` module to render that.
### Rendering Markdown with `@nuxt/markdownit`
### Rendering Markdown with `@nuxtjs/markdownit`
First, install the Nuxt `markdownit` module.
```sh
npm install @nuxt/markdownit
npm install @nuxtjs/markdownit
```
Next, add the module to your `nuxt.config.js` and set its configuration. For this example, you can use `markdownit`'s Vue injection.