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:
kert
2026-04-29 09:21:43 -04:00
parent 1843d9f4df
commit 0012b2b4c7

View File

@@ -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")