Update README.md
This commit is contained in:
parent
b96c310008
commit
7e3531f3b7
22
README.ko.md
22
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
|
||||
|
||||
|
|
22
README.md
22
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
|
||||
|
|
Loading…
Reference in New Issue