fix(rex/comments): drop unused linkify option from MarkdownIt config
The option was set in the dict literal but never activated — that
requires both `_MD.enable("linkify")` and the `linkify-it-py`
package, neither of which is wired up. Pure dead code.
Surfaced by code review on commit 1843d9f.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -12,7 +12,7 @@ from markdown_it import MarkdownIt
|
|||||||
|
|
||||||
from rex.comments.combine import parse_combined
|
from rex.comments.combine import parse_combined
|
||||||
|
|
||||||
_MD = MarkdownIt("commonmark", {"html": False, "breaks": False, "linkify": True})
|
_MD = MarkdownIt("commonmark", {"html": False, "breaks": False})
|
||||||
_MD.enable("table")
|
_MD.enable("table")
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user