From f103164b28ef710f8d49595955725be1e127a018 Mon Sep 17 00:00:00 2001
From: plugd <plugd@thelambdalab.xyz>
Date: Mon, 8 Aug 2022 09:27:19 +1000
Subject: [PATCH] Fixed a text/gemini parsing regression.

---
 elpher.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/elpher.el b/elpher.el
index 1573581..2a30f99 100644
--- a/elpher.el
+++ b/elpher.el
@@ -1687,7 +1687,7 @@ can be used to toggle the display of the preformatted text."
      (setq-local fill-column (min (window-width) elpher-gemini-max-fill-width))
      (dolist (line (split-string data "\n"))
        (pcase line
-         ((rx (: "```" (opt (let alt-text (+ any)))))
+         ((rx (: string-start "```" (opt (let alt-text (+ any)))))
           (setq preformatted
                 (if preformatted
                     nil
-- 
2.20.1