mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
21 lines
585 B
JavaScript
21 lines
585 B
JavaScript
|
import remarkGfm from 'remark-gfm'
|
||
|
import remarkUnwrapImages from 'remark-unwrap-images'
|
||
|
import remarkSmartypants from 'remark-smartypants'
|
||
|
|
||
|
import remarkCustomAttrs from './remarkCustomAttrs.mjs'
|
||
|
import remarkWrapSections from './remarkWrapSections.mjs'
|
||
|
import remarkCodeBlocks from './remarkCodeBlocks.mjs'
|
||
|
import remarkFindAndReplace from './remarkFindAndReplace.mjs'
|
||
|
|
||
|
const remarkPlugins = [
|
||
|
remarkGfm,
|
||
|
remarkSmartypants,
|
||
|
remarkFindAndReplace,
|
||
|
remarkUnwrapImages,
|
||
|
remarkCustomAttrs,
|
||
|
remarkCodeBlocks,
|
||
|
remarkWrapSections,
|
||
|
]
|
||
|
|
||
|
export default remarkPlugins
|