Highlighter function: (content, langName, langAttrs) -> escaped HTML.
(self)
| 164 | |
| 165 | @property |
| 166 | def highlight(self) -> Callable[[str, str, str], str] | None: |
| 167 | """Highlighter function: (content, langName, langAttrs) -> escaped HTML.""" |
| 168 | return self._options["highlight"] |
| 169 | |
| 170 | @highlight.setter |
| 171 | def highlight(self, value: Callable[[str, str, str], str] | None) -> None: |