(self)
| 636 | self.assertIn(">", result) |
| 637 | |
| 638 | def test_blockquotes_preserved(self): |
| 639 | result = render_markdown("Description\n\n> indented example") |
| 640 | self.assertIn("<blockquote>", result) |
| 641 | self.assertIn("indented example", result) |
nothing calls this directly
no test coverage detected