f877c37fc6
tests / Test (windows-latest, 3.13) (push) Blocked by required conditions
tests / Test (windows-latest, 3.14) (push) Blocked by required conditions
tests / Validate (push) Waiting to run
tests / Test (macos-latest, 3.10) (push) Blocked by required conditions
tests / Test (macos-latest, 3.11) (push) Blocked by required conditions
tests / Test (macos-latest, 3.12) (push) Blocked by required conditions
tests / Test (macos-latest, 3.13) (push) Blocked by required conditions
tests / Test (macos-latest, 3.14) (push) Blocked by required conditions
tests / Test (ubuntu-latest, 3.10) (push) Blocked by required conditions
tests / Test (ubuntu-latest, 3.11) (push) Blocked by required conditions
tests / Test (ubuntu-latest, 3.12) (push) Blocked by required conditions
tests / Test (ubuntu-latest, 3.13) (push) Blocked by required conditions
tests / Test (ubuntu-latest, 3.14) (push) Blocked by required conditions
tests / Test (windows-latest, 3.10) (push) Blocked by required conditions
tests / Test (windows-latest, 3.11) (push) Blocked by required conditions
tests / Test (windows-latest, 3.12) (push) Blocked by required conditions
universe validation / Validate (push) Waiting to run
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
|