Follow-up of #42. textNodes in src/gdrive/to-markdown.ts returns a code-font run as one inlineCode node, so a soft line break inside it is not a break but the vertical tab itself, and it lands in the .md inside the backticks as a raw control character. It round-trips byte for byte, so nothing fails; it is just unpleasant in an editor and in a diff.
Split the run at the tab into inlineCode, break, inlineCode, or write a space, and say which in MANUAL §6.
Follow-up of #42.
textNodesinsrc/gdrive/to-markdown.tsreturns a code-font run as oneinlineCodenode, so a soft line break inside it is not abreakbut the vertical tab itself, and it lands in the.mdinside the backticks as a raw control character. It round-trips byte for byte, so nothing fails; it is just unpleasant in an editor and in a diff.Split the run at the tab into
inlineCode, break, inlineCode, or write a space, and say which in MANUAL §6.