This method exists to inform other HTML-using modules (e.g. Markupsafe, htmltag, etc) that this object is HTML and does not need things like special characters (<>&) escaped.
(self)
| 450 | return self._data_and_metadata() |
| 451 | |
| 452 | def __html__(self): |
| 453 | """ |
| 454 | This method exists to inform other HTML-using modules (e.g. Markupsafe, |
| 455 | htmltag, etc) that this object is HTML and does not need things like |
| 456 | special characters (<>&) escaped. |
| 457 | """ |
| 458 | return self._repr_html_() |
| 459 | |
| 460 | |
| 461 | class Markdown(TextDisplayObject): |
nothing calls this directly
no test coverage detected