diff --git a/README.ko.md b/README.ko.md index c5f207b..f671cfc 100644 --- a/README.ko.md +++ b/README.ko.md @@ -547,7 +547,27 @@ root/config/_default/menus.en.toml file weight = 6 ``` -And we are good to go. +4. 추가적으로, date를 미래의 날짜를 쓰고 싶으시면 다음 단계를 따라서 해주세요. + + - 다음 경로의 설정파일(root/config/_default/config.toml)에서 `buildFuture`를 추가해주세요. + + ```toml + ... + buildFuture = true + ... + ``` + + - talks폴더의 마크다운 파일에 `publishDate`를 추가해주세요. root/content/talks/myLinks.md + + ```yaml + --- + title: + date: + publishDate: 2020-02-20 + ... + --- + ... + ``` ## Multi Language diff --git a/README.md b/README.md index 50323e7..fc44737 100644 --- a/README.md +++ b/README.md @@ -542,6 +542,28 @@ links: And we are good to go. +4. Additionally, if you want to use a future date for the talks page, you need more things to do. + + - add config variable named `buildFuture` at root/config/_default/config.toml + + ```toml + ... + buildFuture = true + ... + ``` + + - add publishDate front matter to your md file at root/content/talks/myLinks.md + + ```yaml + --- + title: + date: + publishDate: 2020-02-20 + ... + --- + ... + ``` + ## Multi Language The default language of this theme is English. If you want to use another language, follow these steps