Carry the fence depth through blockquotes and lists, and split the block spelling from it

This commit is contained in:
2026-08-25 15:33:24 +02:00
parent 56072d36ef
commit f065783f8f
11 changed files with 243 additions and 79 deletions
+1 -2
View File
@@ -1,8 +1,7 @@
import type { AttributeKind } from './adf-document.ts'
import type { JsonValue } from './json-value.ts'
import { serializeCanonicalJson } from './canonical-json.ts'
export type AttributeKind = 'boolean' | 'json' | 'number' | 'string'
const bareToken = /^[A-Za-z0-9_-]+$/
export function isBareToken(text: string): boolean {