export function isMarkdownLineStart(markdown: string, index: number): boolean { return index === 0 || markdown[index - 1] === '\n' }