From 4fedcef87edaf52abbc0b7331e206bf48d645271 Mon Sep 17 00:00:00 2001 From: wookie184 Date: Mon, 30 Dec 2024 15:11:49 +0000 Subject: Fix rendering of markdown headers in docs --- tests/bot/exts/info/doc/test_parsing.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests') diff --git a/tests/bot/exts/info/doc/test_parsing.py b/tests/bot/exts/info/doc/test_parsing.py index 065255bea..7136fc32c 100644 --- a/tests/bot/exts/info/doc/test_parsing.py +++ b/tests/bot/exts/info/doc/test_parsing.py @@ -96,6 +96,7 @@ class MarkdownCreationTest(TestCase): test_cases = ( ("

Hello World

", "Hello World"), ("

Hello

World

", "Hello\n\nWorld"), + ("

Title

", "**Title**") ) self._run_tests(test_cases) -- cgit v1.2.3