-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: toml config parse [params.author] wrong
- Loading branch information
Showing
3 changed files
with
8 additions
and
11 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 |
---|---|---|
|
@@ -56,10 +56,9 @@ defaultContentLanguage = "en" # Default language to use | |
homeFullContent = false # if false, show post summaries on home page. Otherwise show full content. | ||
rssFullContent = true # if false, Rss feed instead of the summary | ||
|
||
[params.author] | ||
name = "xianmin" # essential # 必需 | ||
email = "[email protected]" # optional, for RSS # 可选 | ||
url = "/about" # optional # 可选 | ||
author.name = "Jane" # essential # 必需 | ||
author.email = "[email protected]" # optional, for RSS # 可选 | ||
author.url = "/about" # optional # 可选 | ||
|
||
# site info (optional) # 站点信息(可选,不需要的可以直接注释掉) | ||
logoTitle = "Jane" # default: the title value # 默认值: 上面设置的title值 | ||
|
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 |
---|---|---|
|
@@ -62,10 +62,9 @@ defaultContentLanguage = "en" # Default language to use | |
rssFullContent = true # if false, Rss feed instead of the summary | ||
mainSections = ["post"] | ||
|
||
[params.author] | ||
name = "xianmin" # essential # 必需 | ||
email = "[email protected]" # optional, for RSS # 可选 | ||
url = "/about" # optional # 可选 | ||
author.name = "Jane" # essential # 必需 | ||
author.email = "[email protected]" # optional, for RSS # 可选 | ||
author.url = "/about" # optional # 可选 | ||
|
||
# site info (optional) # 站点信息(可选,不需要的可以直接注释掉) | ||
logoTitle = "Jane" # default: the title value # 默认值: 上面设置的title值 | ||
|