From a9724b16d6caf445441958cb207e59724d520ed2 Mon Sep 17 00:00:00 2001 From: taskylizard <75871323+taskylizard@users.noreply.github.com> Date: Sat, 4 Nov 2023 01:29:16 +0530 Subject: [PATCH] partially make questions groups in bg --- .github/replace.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/replace.py b/.github/replace.py index 737050426..cbccc5d29 100644 --- a/.github/replace.py +++ b/.github/replace.py @@ -13,6 +13,7 @@ def replaces_for_beginners_guide(text): text = re.sub('\*\*\[\^ Back to Top\]\(#beginners-guide-to-piracy\)\*\*', '', text, flags=re.MULTILINE) text = re.sub(r"!!!\s(.+?)\n", r":::info\n\1\n:::\n", text, flags=re.MULTILINE) text = re.sub("\n\*\*\[", "\n* **[", text, flags=re.MULTILINE) + text = re.sub(r'>(.*)\n\n(.*)', r':::details \1\n\2\n:::', text, flags=re.MULTILINE) return text def do_some_individual_replaces(text):