From a5a2673642c5c46e10e15bbf54dbc7b7ac6f8c14 Mon Sep 17 00:00:00 2001 From: Bohan Jiang <52446949+Bohan-J@users.noreply.github.com> Date: Tue, 31 Mar 2026 15:28:02 +0800 Subject: [PATCH] fix(editor): use correct getMarkdown API for @tiptap/markdown (#219) The migration from tiptap-markdown to @tiptap/markdown (38e92040) changed the getMarkdown API location. The old package stored it at editor.storage.markdown.getMarkdown(), but @tiptap/markdown adds it directly as editor.getMarkdown(). This caused getEditorMarkdown() to always return "", preventing description (and any markdown content) from being saved when creating or editing issues/comments.