From 72aace40d3b3edf0557c5dfeb3f19012971e711f Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sat, 2 May 2026 18:48:46 +0200 Subject: [PATCH] Fixed markdown-to-micron link rendering --- RNS/Utilities/rngit/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNS/Utilities/rngit/util.py b/RNS/Utilities/rngit/util.py index 47ee0f66..75dad2e5 100644 --- a/RNS/Utilities/rngit/util.py +++ b/RNS/Utilities/rngit/util.py @@ -257,7 +257,7 @@ class MarkdownToMicron: # TODO: Evaluate best way to handle both normal and nomadnet URLs text = text.replace('`', '') # url = url.replace('`', '\\`') - return f"`[{text}`{url}]" + return f"`!`[{text}`{url}]`!" def _format_header(self, match): hashes = match.group(1)