From 869c5f6143295cc3d525a7d34c911556369e9e97 Mon Sep 17 00:00:00 2001 From: Leander Druwel Date: Thu, 21 May 2026 15:26:19 +0200 Subject: [PATCH 1/4] fix(rn-publish): convert markdown description to HTML via pandoc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The collaboration platform uses a rich-text editor (contenteditable div) that renders HTML. Previously, descriptions were sent as raw GitHub Flavored Markdown text, which caused: - Paragraph breaks (\n\n) to be invisible (all text bundles into one paragraph) - Markdown syntax (*italic*, \code\, **bold**) to appear literally Fix: pipe the extracted description through pandoc (pre-installed on ubuntu-latest) to convert GFM → HTML before sending to the API. This produces

, , , ,