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

22 lines
512 B
JavaScript

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