Vanha frontend siirretty temp/. Uusi rakenne: - StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro - global.css erillinen - Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava) - Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md - Ei tokenisointia eikä koodilaboratoriota Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
446 B
JavaScript
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
|
|
}
|