// DumpMarkdown writes the internal structure of a markdown // document to standard output. // It is intended for debugging. func DumpMarkdown(d *md.Document) { … } func dumpBlocks(bs []md.Block, depth int) { … } func dumpBlock(b md.Block, depth int) { … } func dumpInlines(ins []md.Inline, depth int) { … } func dprintf(depth int, format string, args ...any) { … }