You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/docs/docs/config/README.md
+32
Original file line number
Diff line number
Diff line change
@@ -240,6 +240,38 @@ This attribute will control the behaviour of `[[TOC]]`. It contains the followin
240
240
241
241
We also provide a [global component TOC](../guide/using-vue.md#toc) which allows for more free control by passing props directly to `<TOC>`.
242
242
243
+
### markdown.plugins
244
+
245
+
You can install any markdown-it plugins through `markdown.plugins` option. It is similar with [using VuePress plugins](../plugin/using-a-plugin.html#using-a-plugin). You can either use Babel style or object style. The `markdown-it-` prefix is optional and can omit in the list.
246
+
247
+
```js
248
+
module.exports= {
249
+
markdown: {
250
+
plugins: [
251
+
'@org/foo', // equals to @org/markdown-it-foo if exists
0 commit comments