2022-11-13 19:59:01 +03:00
|
|
|
import remarkGfm from 'remark-gfm'
|
2022-11-14 17:43:54 +03:00
|
|
|
import remarkUnwrapImages from 'remark-unwrap-images'
|
2022-11-13 19:59:01 +03:00
|
|
|
|
2022-11-13 16:53:15 +03:00
|
|
|
import remarkCustomAttrs from './remarkCustomAttrs.mjs'
|
2022-11-21 20:09:00 +03:00
|
|
|
import remarkWrapSections from './remarkWrapSections.mjs'
|
2022-11-25 04:39:21 +03:00
|
|
|
import remarkCodeBlocks from './remarkCodeBlocks.mjs'
|
2022-11-21 20:09:00 +03:00
|
|
|
|
2022-11-21 19:46:05 +03:00
|
|
|
const remarkPlugins = [
|
2022-11-13 19:59:01 +03:00
|
|
|
remarkGfm,
|
2022-11-14 17:43:54 +03:00
|
|
|
remarkUnwrapImages,
|
2022-11-13 16:53:15 +03:00
|
|
|
remarkCustomAttrs,
|
2022-11-25 04:39:21 +03:00
|
|
|
remarkCodeBlocks,
|
2022-11-21 19:46:05 +03:00
|
|
|
remarkWrapSections,
|
|
|
|
]
|
2022-11-13 18:31:26 +03:00
|
|
|
|
|
|
|
export default remarkPlugins
|