mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-12 18:26:30 +03:00
66f7bd5d5c
For more details see this issue: https://github.com/mdx-js/mdx/issues/1798
15 lines
347 B
JavaScript
15 lines
347 B
JavaScript
import remarkGfm from 'remark-gfm'
|
|
import remarkUnwrapImages from 'remark-unwrap-images'
|
|
|
|
import remarkCustomAttrs from './remarkCustomAttrs.mjs'
|
|
import remarkWrapSections from './remarkWrapSections.mjs'
|
|
|
|
const remarkPlugins = [
|
|
remarkGfm,
|
|
remarkUnwrapImages,
|
|
remarkCustomAttrs,
|
|
remarkWrapSections,
|
|
]
|
|
|
|
export default remarkPlugins
|