In a case of self-closing tag (code, html, fence, etc.), it has contents of this tag.
(self)
| 302 | |
| 303 | @property |
| 304 | def content(self) -> str: |
| 305 | """In a case of self-closing tag (code, html, fence, etc.), it |
| 306 | has contents of this tag.""" |
| 307 | return self._attribute_token().content |
| 308 | |
| 309 | @property |
| 310 | def markup(self) -> str: |
nothing calls this directly
no test coverage detected