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)
| 721 | return self._data_and_metadata() |
| 722 | |
| 723 | def __html__(self): |
| 724 | """ |
| 725 | This method exists to inform other HTML-using modules (e.g. Markupsafe, |
| 726 | htmltag, etc) that this object is HTML and does not need things like |
| 727 | special characters (<>&) escaped. |
| 728 | """ |
| 729 | return self._repr_html_() |
| 730 | |
| 731 | |
| 732 | class Markdown(TextDisplayObject): |
nothing calls this directly
no test coverage detected