如何在github markdown中显示纯文本部分?

时间:2013-05-13 15:34:26

标签: github markdown

我很难在Google上找到这个(非常简单?)问题的真正答案,而且我开始担心没有解决方案。

我正在学习github降价。我想展示一些包含伪造电子邮件地址的示例代码,例如user@example.com。但是github坚持要自动链接这个文本。我还有一大堆文本,有很多特殊字符。

有没有办法转义块或部分,以便不处理特殊字符,也不会生成自动链接?

3 个答案:

答案 0 :(得分:53)

用反引号包裹块:

```text
code();
address@domain.com
```

答案 1 :(得分:23)

您可以将这些文字包装在预标签中。

<pre>Text I want left alone@donotlink.me</pre>

我刚在github上测试了这个。

答案 2 :(得分:2)

这都是kramdown语法的一部分。最后一个链接显示了每个GitHub降价技巧。

所以这也将起作用:

// any of the two should throw the exception
userPasswordRepository.delete(jpaUserPassword);
userPasswordRepository.deleteById(id);

Above will delete record from child entity JPA`enter code here`UserPassword, so constraint violation error won't come.

If constraint violation is required on JPAUser, then remove CascadeType.ALL or make it CascadeType.PERSIST