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