我们经常发布文档更新,此页面的翻译可能仍在进行中。有关最新信息,请访问英文文档。如果此页面上的翻译有问题,请告诉我们
文章版本: Enterprise Server 2.15

此版本的 GitHub Enterprise 将停止服务 此版本的 GitHub Enterprise 已停止服务 2019-10-16. 即使针对重大安全问题,也不会发布补丁。 For better performance, improved security, and new features, upgrade to the latest version of GitHub Enterprise. For help with the upgrade, contact GitHub Enterprise support.

创建和突显代码块

通过围栏代码块和启用语法突显来分享代码样本

围栏代码块

You can create fenced code blocks by placing triple backticks ``` before and after the code block. 我们建议在代码块的前后各留一个空白行,使原始格式更易辨读。

```
function test() {
  console.log("notice the blank line before this function?");
}
```

渲染的围栏代码块

提示:要在列表中保留格式,请确保将非围栏代码块缩进八个空格。

语法突显

您可以添加可选的语言标识符,以在围栏代码块中启用语法突显。

例如,要语法突显 Ruby 代码:

```ruby
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
```

渲染的启用 Ruby 语法突显的代码块

我们使用 Linguist 来执行语言检测并选择第三方语法进行语法突显。 您可以在语言 YAML 文件中找出哪些关键词有效。.

延伸阅读

问问别人

找不到要找的内容?

联系我们