(self)
| 556 | ) |
| 557 | |
| 558 | def testPermalink(self): |
| 559 | self.assertMarkdownRenders( |
| 560 | '# Header', |
| 561 | '<h1 id="header">' # noqa |
| 562 | 'Header' # noqa |
| 563 | '<a class="headerlink" href="#header" title="Permanent link">¶</a>' # noqa |
| 564 | '</h1>', # noqa |
| 565 | extensions=[TocExtension(permalink=True)] |
| 566 | ) |
| 567 | |
| 568 | def testPermalinkWithSingleInlineCode(self): |
| 569 | self.assertMarkdownRenders( |
nothing calls this directly
no test coverage detected