Files
skills-here-run-place/node_modules/mdast-util-to-markdown/lib/util/check-strong.js
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

22 lines
446 B
JavaScript

/**
* @import {Options, State} from 'mdast-util-to-markdown'
*/
/**
* @param {State} state
* @returns {Exclude<Options['strong'], null | undefined>}
*/
export function checkStrong(state) {
const marker = state.options.strong || '*'
if (marker !== '*' && marker !== '_') {
throw new Error(
'Cannot serialize strong with `' +
marker +
'` for `options.strong`, expected `*`, or `_`'
)
}
return marker
}