summaryrefslogtreecommitdiff
path: root/themes/blowfish/exampleSite/content/samples/markdown/index.zh-cn.md
diff options
context:
space:
mode:
Diffstat (limited to 'themes/blowfish/exampleSite/content/samples/markdown/index.zh-cn.md')
-rwxr-xr-xthemes/blowfish/exampleSite/content/samples/markdown/index.zh-cn.md146
1 files changed, 0 insertions, 146 deletions
diff --git a/themes/blowfish/exampleSite/content/samples/markdown/index.zh-cn.md b/themes/blowfish/exampleSite/content/samples/markdown/index.zh-cn.md
deleted file mode 100755
index 33da6b3..0000000
--- a/themes/blowfish/exampleSite/content/samples/markdown/index.zh-cn.md
+++ /dev/null
@@ -1,146 +0,0 @@
----
-title: "Markdown"
-date: 2019-03-11
-description: "在 Markdown 文章中添加 HTML 元素的基本语法和格式。"
-tags: ["markdown", "css", "html", "示例"]
-type: 'sample'
----
-
-本文提供了可在 Blowfish 中使用的基本 Markdown 格式示例,还展示了如何加入一些基本 HTML 元素。
-
-<!--more-->
-
-## 标题
-
-以下 HTML 元素 `<h1>`—`<h6>` 表示六个级别的标题。 `<h1>` 是最高的标题级别,而 `<h6>` 是最低的。
-
-# H1
-
-## H2
-
-### H3
-
-#### H4
-
-##### H5
-
-###### H6
-
-## 段落
-
-Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
-
-Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
-
-## 块引用
-
-块引用表示从其他来源引用的内容,可以用于位于 `footer` 或 `cite` 元素内的引文,并且可以表示一些补充说明(例如注释和缩写)。
-
-### 没有参考链接的块引用
-
-> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
-> **Note** that you can use _Markdown syntax_ within a blockquote.
-
-### 有参考链接的块引用
-
-> Don't communicate by sharing memory, share memory by communicating.<br>
-> — <cite>Rob Pike[^1]</cite>
-
-[^1]: 上述引文摘自 Rob Pike 在 2015 年 11 月 18 日 Gopherfest 期间的[谈论“什么都没有”](https://www.youtube.com/watch?v=PAAkCSZUG1c)。
-
-## 表格
-
-表格不是核心 Markdown 规范的一部分,但 Hugo 支持渲染。
-
-| Name | Age |
-| ----- | --- |
-| Bob | 27 |
-| Alice | 23 |
-
-### 表格内内联 Markdown
-
-| Italics | Bold | Code |
-| --------- | -------- | ------ |
-| _italics_ | **bold** | `code` |
-
-## 代码块
-
-### 带反引号的代码块
-
-```html
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>Example HTML5 Document</title>
- </head>
- <body>
- <p>Test</p>
- </body>
-</html>
-```
-
-### 缩进四个空格的代码块
-
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Example HTML5 Document</title>
- </head>
- <body>
- <p>Test</p>
- </body>
- </html>
-
-### 带有 Hugo 内部高亮简码的代码块
-
-{{< highlight html "linenos=table,hl_lines=4 7-9" >}}
-
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <title>Example HTML5 Document</title>
-</head>
-<body>
- <p>Test</p>
-</body>
-</html>
-{{< /highlight >}}
-
-## 列表
-
-### 有序列表
-
-1. First item
-2. Second item
-3. Third item
-
-### 无序列表
-
-- List item
-- Another item
-- And another item
-
-### 嵌套列表
-
-- Fruit
- - Apple
- - Orange
- - Banana
-- Dairy
- - Milk
- - Cheese
-
-## 其他元素 — abbr、sub、sup、kbd、mark
-
-<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
-
-H<sub>2</sub>O
-
-X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
-
-Press <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd> to end the session.
-
-Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures. \ No newline at end of file