在 GitHub wiki 页面上,如果我输入:
www.foobar.com
GitHub 自动假定这是一个 URL 并将文本作为超链接到 http://www.foobar.com .但是,有时我不想创建超链接。有没有办法阻止这种行为?也许某种 Markdown ?
请您参考如下方法:
这不仅限于维基页面,而且是 GFM (GitHub Flavored Markdown) url autolinking feature 的一部分。 .
将它们放在 `` 中可以工作,但将 url 显示为代码:foo http://example.com
酒吧。
foo `http://example.com` bar
另一个技巧(
mentioned in this gist )是
ht<span>tp://</span>example.com
这会将 http://example.com 显示为常规文本。
在你的情况下(没有 http://)
w<span>ww.</span>foobar.com
这也会将 www.foobar.com 显示为常规文本。
geekley添加 in the comments :
For emails, you can use
foo<span>@</span>example.com
Venryx建议在 the comments更短/更清洁的解决方案:
Just add one of the void element tags (I prefer
<area>
), at a location that breaks the URL detectability, eg. right before the first dot.Example:
www<area>.foobar.com