23 lines
554 B
JavaScript
23 lines
554 B
JavaScript
/**
|
|
* @typedef {import('../types.js').Options} Options
|
|
* @typedef {import('../types.js').State} State
|
|
*/
|
|
|
|
/**
|
|
* @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
|
|
}
|