Link

代码


遵照 markdown 的语言,在 ``` 后加上 markdown、JS、YAML 便可实现语法高亮:

例如

测试代码 `<inline code snippet>` 测试代码

或者JS

// Javascript code with syntax highlighting.
var fun = function lang(l) {
  dateformat.i18n = require('./lang/' + l)
  return true;
}

或者 YAML

---
layout: default
title: 404
nav_exclude: true
---

也可以使用 DIV 将代码括起来

例如

[Link button](http://example.com/){: .btn }

对应源码

<div class="code-example" markdown="1">
[Link button](http://example.com/){: .btn }
</div>