Update templates/pages-sections.md
This commit is contained in:
parent
bedf469d16
commit
554d50720c
|
@ -32,9 +32,12 @@ extra: HashMap<String, Any>;
|
||||||
word_count: Number;
|
word_count: Number;
|
||||||
// Based on https://help.medium.com/hc/en-us/articles/214991667-Read-time
|
// Based on https://help.medium.com/hc/en-us/articles/214991667-Read-time
|
||||||
reading_time: Number;
|
reading_time: Number;
|
||||||
// `previous` and `next` are only filled if the content can be sorted
|
// `earlier` and `later` are only populated if the section variable `sort_by` is set to `date`
|
||||||
previous: Page?;
|
earlier: Page?;
|
||||||
next: Page?;
|
later: Page?;
|
||||||
|
// `heavier` and `lighter` are only populated if the section variable `sort_by` is set to `weight`
|
||||||
|
heavier: Page?;
|
||||||
|
lighter: Page?;
|
||||||
// See the Table of contents section below for more details
|
// See the Table of contents section below for more details
|
||||||
toc: Array<Header>;
|
toc: Array<Header>;
|
||||||
// Year/month/day is only set if the page has a date and month/day are 1-indexed
|
// Year/month/day is only set if the page has a date and month/day are 1-indexed
|
||||||
|
|
Loading…
Reference in a new issue