Markdown会自动将有效的HTML链接转换为链接,例如。 http://example.com
变为http://example.com。
(例如,您可以通过在github仓库中提出问题,输入http://example.com
然后查看“预览”标签来尝试此操作 - 因为github使用了markdown。)
当markdown遇到HTML标记时,它会停止此行为,例如。 <div>http://example.com</div>
仅保留http://example.com
。
然而,似乎如果你在降价表中使用<div>
,那么它会再次开始自动链接,例如。如果你输入:
|Parameter|Value|
|-------|-------|
|Date |Tue Jan 01 1980|
|Parameter|<div>http://example.com</div>|
您会看到http://example.com是一个链接。
我正在使用markdown-it,但正如我所提到的,github的降价也会发生这种情况。
如何在降价表中阻止此自动关联?
答案 0 :(得分:0)
阻止Markdown解析内容的最可靠方法是将其包装在代码范围内。有些人甚至认为纯文本URL应始终包含在代码范围内:
Some text with a URL: `http://example.com`.
|Parameter|Value|
|-------|-------|
|Date |Tue Jan 01 1980|
|Parameter|`http://example.com`|