From 010dcfa349289061523519634cfa1a7e3e9039c2 Mon Sep 17 00:00:00 2001 From: Dinesh <13635627+HumbleBee14@users.noreply.github.com> Date: Fri, 14 Aug 2026 19:18:40 -0700 Subject: [PATCH] Write engine: stop the converter destroying content, add unlisted drafts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The converter turns anything it does not recognise into literal text, and the serializer then escapes its `<` — so an unhandled construct is not ignored on the way in, it is destroyed on the way out. Posts written here always came from the editor, so this stayed latent; a hand-edited index.mdx triggers it. Round-trip fixes: - Escaped delimiters. Every inline pattern now carries `(?/, /, /, and now read back as styles instead of surviving as text. - Colour spans, read back to their palette names. - Bare YAML flow lists — `tags: [a, b]` no longer fails JSON.parse. -
, ,