-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: Add a sample post to show the usage of tags (#133)
- Loading branch information
1 parent
6402993
commit 66977aa
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
title: Sixth post | ||
author: CUSTOM AUTHOR NAME | ||
publish_date: 2023-08-17 | ||
snippet: Some snippet appears in main page. | ||
abstract: This is the sixth post showcasing math rendering | ||
summary: Sort summary | ||
description: A description to this post | ||
tags: ["sample", "tags"] | ||
allow_iframes: false | ||
disable_html_sanitization: false | ||
render_math: true | ||
--- | ||
|
||
# Tags | ||
|
||
- Tags make it easier for readers to find the desired article. | ||
|
||
```markdown | ||
--- | ||
tags: ["deno", "tags"] | ||
--- | ||
``` | ||
|
||
or | ||
|
||
```markdown | ||
--- | ||
tags: | ||
- deno | ||
- tags | ||
--- | ||
``` |