Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus. Et legere ocurreret pri, animal tacimates complectitur ad cum. Cu eum inermis inimicus efficiendi. Labore officiis his ex, soluta officiis concludaturque ei qui, vide sensibus vim ad.
+``` + +## 强调 + +### 加粗 + +为了用粗体强调文本的片段。 + +下面文本的片段 **显示为粗体**。 + +```markdown +**rendered as bold text** +``` + +效果如下: + + +**rendered as bold text** + + +和这个HTML: + +```html +rendered as bold text +``` + +### 斜体 + +为了用斜体强调文本的片段。 + +下面文本的片段 _显示为斜体_。 + +```markdown +_rendered as italicized text_ +``` + +效果如: + + +_rendered as italicized text_ + + +和这个HTML: + +```html +rendered as italicized text +``` + +### 删除线 + +在GFM (GitHub flavored Markdown) ,你可以使用删除线。 + +```markdown +~~Strike through this text.~~ +``` + +效果如下: + +~~Strike through this text.~~ + +HTML: + +```html +++``` + +块引用也可以是嵌套的: + +```markdown +> Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue. Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi. +> +> > Sed adipiscing elit vitae augue consectetur a gravida nunc vehicula. Donec auctor odio non est accumsan facilisis. Aliquam id turpis in dolor tincidunt mollis ac eu diam. +> +> Mauris sit amet ligula egestas, feugiat metus tincidunt, luctus libero. Donec congue finibus tempor. Vestibulum aliquet sollicitudin erat, ut aliquet purus posuere luctus. +``` + +效果如下: + +> Donec massa lacus, ultricies a ullamcorper in, fermentum sed augue. Nunc augue augue, aliquam non hendrerit ac, commodo vel nisi. +> +> > Sed adipiscing elit vitae augue consectetur a gravida nunc vehicula. Donec auctor odio non est accumsan facilisis. Aliquam id turpis in dolor tincidunt mollis ac eu diam. +> +> Mauris sit amet ligula egestas, feugiat metus tincidunt, luctus libero. Donec congue finibus tempor. Vestibulum aliquet sollicitudin erat, ut aliquet purus posuere luctus. + +## 通知 + +{{% notice note %}} +通知覆盖块引用语法(`>>>`)的旧机制已经弃用了。通知目前通过专用插件 [Markdown Notices](https://github.com/getgrav/grav-plugin-markdown-notices)实现。 +{{% /notice %}} + +## 列表 + +### 无序的 + +用于对项目排序无需求的列表 + +你可以使用下面任一符号实现列表项: + +```markdown +* valid bullet +- valid bullet ++ valid bullet +``` + +例如: + +```markdown ++ Lorem ipsum dolor sit amet ++ Consectetur adipiscing elit ++ Integer molestie lorem at massa ++ Facilisis in pretium nisl aliquet ++ Nulla volutpat aliquam velit + - Phasellus iaculis neque + - Purus sodales ultricies + - Vestibulum laoreet porttitor sem + - Ac tristique libero volutpat at ++ Faucibus porta lacus fringilla vel ++ Aenean sit amet erat nunc ++ Eget porttitor lorem +``` + +效果如下: + + ++ Lorem ipsum dolor sit amet ++ Consectetur adipiscing elit ++ Integer molestie lorem at massa ++ Facilisis in pretium nisl aliquet ++ Nulla volutpat aliquam velit + - Phasellus iaculis neque + - Purus sodales ultricies + - Vestibulum laoreet porttitor sem + - Ac tristique libero volutpat at ++ Faucibus porta lacus fringilla vel ++ Aenean sit amet erat nunc ++ Eget porttitor lorem + + +和HTML: + +```html +Fusion Drive combines a hard drive with a flash storage (solid-state drive) and presents it as a single logical volume with the space of both drives combined.
+
In this example, <section></section> should be wrapped as code.
+
+ // Some comments
+ line 1 of code
+ line 2 of code
+ line 3 of code
+
+
+```
+
+### 块代码"fences"
+
+使用"fences" ```` ``` ````把多行代码放到块中。
+
+```markdown
+Sample text here...
+```
+
+HTML:
+
+```html
+
+ Sample text here...
+
+```
+
+### 高亮语法
+
+GFM(GitHub Flavored Markdown)也支持语法高亮。使用它最简单的方法是在"fence"的第一个代码后面直接添加语言的文件扩展名,如` ```js `,语法会自动高亮。
+
+更多内容,参见[Code Highlighting]({{< ref "syntaxhighlight.md" >}})。
+
+例如,对JavaScript代码进行语法高亮:
+
+```plaintext
+ ```js
+ grunt.initConfig({
+ assemble: {
+ options: {
+ assets: 'docs/assets',
+ data: 'src/data/*.{json,yml}',
+ helpers: 'src/custom-helpers.js',
+ partials: ['src/partials/**/*.{hbs,md}']
+ },
+ pages: {
+ options: {
+ layout: 'default.hbs'
+ },
+ files: {
+ './': ['src/templates/pages/index.hbs']
+ }
+ }
+ }
+ };
+ ```
+```
+
+效果如下:
+
+```js
+grunt.initConfig({
+ assemble: {
+ options: {
+ assets: 'docs/assets',
+ data: 'src/data/*.{json,yml}',
+ helpers: 'src/custom-helpers.js',
+ partials: ['src/partials/**/*.{hbs,md}']
+ },
+ pages: {
+ options: {
+ layout: 'default.hbs'
+ },
+ files: {
+ './': ['src/templates/pages/index.hbs']
+ }
+ }
+ }
+};
+```
+
+## 表格
+
+表格可以通过在项目之间添加|,首行下面添加-来创建。注意|不需要纵向排列。
+
+```markdown
+| Option | Description |
+| ------ | ----------- |
+| data | path to data files to supply the data that will be passed into templates. |
+| engine | engine to be used for processing templates. Handlebars is the default. |
+| ext | extension to be used for dest files. |
+```
+
+效果如下:
+
+| Option | Description |
+| ------ | ----------- |
+| data | path to data files to supply the data that will be passed into templates. |
+| engine | engine to be used for processing templates. Handlebars is the default. |
+| ext | extension to be used for dest files. |
+
+和HTML:
+
+```html
+| Option | +Description | +
|---|---|
| data | +path to data files to supply the data that will be passed into templates. | +
| engine | +engine to be used for processing templates. Handlebars is the default. | +
| ext | +extension to be used for dest files. | +
v#dVX(KP`!>L3Fjt^bKlK!%Rl8bPOo7b;w$fV213`R@w6S+7
z=mHh>cKk5sP3E~o=s-4Yu}N=>#{#U~jNfQunQpvNHC!qz#7Lgy!1~Cxl$-L1l5d0t
zB|Bc=)0O`(19{My56I)$QNm_6;6g$pNpOSEMgDU3E!tUnJW)JYvfndCGQ7Wt){qby
zE+*ddE2&e>c~6iI$6jM`ojy5pq7xyOf48S0X)JdB^xQS>M0w`zx14UHn)Ju>HhYq-
z;j2Q#*n!1g55V=a%ZP014gFtddz3DuP4jJbyiFaa8xPFej9(on6IE3i)pfFVk34+~
z-AQO?fiqw=56(D=DbUnOWcdeA7}Z{Z=IoGd6c*ounj10m2nG#*=gh!;GcQT4peht|
z9^o&p92~(RNPKJIRM0NqUi0Vo<~+i?=J`R5fb|Fn+}T!G_~uynC7RxDc$^HHIp(qb
zwRV2xZLQwx(v2yo@8UdES26PCyta4R+d77=h5snEu7x)0>Z6IGdi$Qy{g4!O$M3_d
zmRrZv)>wI0NgYsPB>s{ua$k}-_+ey ?=H#5-qJzV+m4pD&8l%7ZeC%K
zxRm||yp}Lue#NG^wzKmL=+)YmNzgn+DrhYe-XNVci)mbOJ1cv?DDP^B!|~905bS%t
z)Ba2Qeh{x`Sh?}kqj<)9V+yQKmb5n(9WlJUf5ENyjb_}RxROEzHUxg4`oxi@(_KvU
zMJkk9J*QTR^SGu=bU*x>Zs^A+4vpV>GinXCqyNA7U~9Fs0pg*jeeJ6KIN;^htNy`V
zvS&O)j%e*@FE7hPeYCDE`QvFyN`HFSyV;wL=l8z4g$fHx0xw)w%|-28j+Aj6*YP%*
zCkZ`Pg65RcqcnWXwNKsWlji#Pr=O6mE$n9eS7;<-suwag3S0k(d=lZ9+z}dA{heX2
zIYXK$oQM6Lwg$(Lwpm(KkrD_$bPGEt1C)_FSPf?oOX_am#y)_4oX!->dbI`Fg!z2D
zh0F?P3yrb8{6>=XR@xBo)<68mTLYnoz<;qzK41lI`iEGdQJ}AP0t(tJyT2l?cRXr5
zT^K(xDv8q9@A%5^ri3&+GB%vqCAOM%3;cz)wP$#9;%5m*6)N)zuH*JA`Lgx+6v?qd0l2>yL;QVXufr0 _c`9pKBhvOem47x~$?II)}^0
za1x@LT9Sg9kETRl9^GCf58g-8%q!c0r$0e((0-YX1m-c3cskC`l5)m{kSTQ
Mh+)j(lrqRtN}IA3QZMD9%0uE3
z${r`5^ynZbjWk8ykG;|OS