diff options
| author | 2024-12-30 15:11:49 +0000 | |
|---|---|---|
| committer | 2024-12-30 15:11:49 +0000 | |
| commit | 4fedcef87edaf52abbc0b7331e206bf48d645271 (patch) | |
| tree | acb1e9fa15d235a9c943f2803c2a8f43ea249211 /tests | |
| parent | Remove surrounding whitespace from doc description markdown (diff) | |
Fix rendering of markdown headers in docs
Diffstat (limited to '')
| -rw-r--r-- | tests/bot/exts/info/doc/test_parsing.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| 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 = (              ("<p>Hello World</p>", "Hello World"),              ("<p>Hello</p><p>World</p>", "Hello\n\nWorld"), +            ("<h1>Title</h1>", "**Title**")          )          self._run_tests(test_cases) | 
