Enable autoconversion of URL-like texts to links.
(self)
| 110 | |
| 111 | @property |
| 112 | def linkify(self) -> bool: |
| 113 | """Enable autoconversion of URL-like texts to links.""" |
| 114 | return self._options["linkify"] |
| 115 | |
| 116 | @linkify.setter |
| 117 | def linkify(self, value: bool) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected