mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-27 17:54:39 +03:00
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
import remarkGfm from 'remark-gfm'
|
|
|
|
import remarkCustomAttrs from './remarkCustomAttrs.mjs'
|
|
import remarkWrapSections from './remarkWrapSections.mjs'
|
|
|
|
const remarkPlugins = [
|
|
remarkGfm,
|
|
remarkCustomAttrs,
|
|
remarkWrapSections,
|
|
]
|
|
|
|
export default remarkPlugins
|