mirror of
https://github.com/imfing/hextra.git
synced 2025-08-24 03:37:18 -04:00

* docs(blog): prepare for v0.10 release post * Update v0.10.md * Update v0.10.md to refine upgrade instructions and enhance blog features. Added synchronized tab switching and pagination controls, while improving the search experience and table of contents navigation. * Enhance v0.10 release documentation with detailed upgrade instructions and migration guide. Added Tailwind theme variable customization section and clarified breaking changes. Improved clarity on CSS class prefix changes for better user experience. * Update v0.10.md to enhance upgrade instructions, clarify breaking changes, and improve overall readability. Adjusted formatting for consistency and added details on asset management and user experience improvements. * Add notable new features to v0.10.md, including dropdown menu support, enhanced search experience, and blog list pagination. Updated FlexSearch upgrade details for clarity and improved migration guide by removing redundant breaking change notes. * chore: update zh-cn translation * chore: update ja translation * chore: update fa and ja translations * chore: prepare release
2.5 KiB
2.5 KiB
title, date, authors, tags, excludeSearch
title | date | authors | tags | excludeSearch | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Markdown 语法指南 | 2020-01-01 |
|
|
true |
本文展示了 Hugo 内容文件中可用的基础 Markdown 语法示例。
基础语法
标题
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
二级标题
三级标题
四级标题
五级标题
六级标题
强调
*这段文字会显示为斜体*
_这段文字也会显示为斜体_
**这段文字会显示为粗体**
__这段文字也会显示为粗体__
_你可以**组合**使用_
这段文字会显示为斜体
这段文字也会显示为斜体
这段文字会显示为粗体
这段文字也会显示为粗体
你可以组合使用
列表
无序列表
* 项目1
* 项目2
* 子项目2a
* 子项目2b
- 项目1
- 项目2
- 子项目2a
- 子项目2b
有序列表
1. 项目1
2. 项目2
3. 项目3
1. 子项目3a
2. 子项目3b
图片

链接
[Hugo](https://gohugo.io)
引用块
正如牛顿所说:
> 如果说我看得比别人更远些,那是因为我站在巨人的肩膀上。
如果说我看得比别人更远些,那是因为我站在巨人的肩膀上。
行内代码
行内`代码`会用`反引号包裹`起来。
行内代码
会用反引号包裹
起来。
代码块
语法高亮
```go
func main() {
fmt.Println("Hello World")
}
```
func main() {
fmt.Println("Hello World")
}
表格
| 语法 | 描述 |
| --------- | ----------- |
| 标题 | 标题文本 |
| 段落 | 正文内容 |
语法 | 描述 |
---|---|
标题 | 标题文本 |
段落 | 正文内容 |