mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 23:18:17 +08:00
22 lines
460 B
JavaScript
22 lines
460 B
JavaScript
/**
|
|
* @import {Options, State} from 'mdast-util-to-markdown'
|
|
*/
|
|
|
|
/**
|
|
* @param {State} state
|
|
* @returns {Exclude<Options['rule'], null | undefined>}
|
|
*/
|
|
export function checkRule(state) {
|
|
const marker = state.options.rule || '*'
|
|
|
|
if (marker !== '*' && marker !== '-' && marker !== '_') {
|
|
throw new Error(
|
|
'Cannot serialize rules with `' +
|
|
marker +
|
|
'` for `options.rule`, expected `*`, `-`, or `_`'
|
|
)
|
|
}
|
|
|
|
return marker
|
|
}
|