parent
5d695d7ce8
commit
50caf1c90c
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.6.0 (unreleased)
|
## 0.6.0 (2019-03-25)
|
||||||
|
|
||||||
### Breaking
|
### Breaking
|
||||||
- `earlier/later` and `lighter/heavier` are not set anymore on pages when rendering
|
- `earlier/later` and `lighter/heavier` are not set anymore on pages when rendering
|
||||||
|
|
|
@ -142,11 +142,11 @@ the value should be the same as the one in the front-matter, not the slugified v
|
||||||
Gets the whole taxonomy of a specific kind.
|
Gets the whole taxonomy of a specific kind.
|
||||||
|
|
||||||
```jinja2
|
```jinja2
|
||||||
{% set categories = get_taxonomy_url(kind="categories") %}
|
{% set categories = get_taxonomy(kind="categories") %}
|
||||||
```
|
```
|
||||||
|
|
||||||
### `load_data`
|
### `load_data`
|
||||||
Loads data from a file or URL. Supported file types include *toml*, *json* and *csv*.
|
Loads data from a file or URL. Supported file types include *toml*, *json* and *csv*.
|
||||||
Any other file type will be loaded as plain text.
|
Any other file type will be loaded as plain text.
|
||||||
|
|
||||||
The `path` argument specifies the path to the data file relative to your base directory, where your `config.toml` is.
|
The `path` argument specifies the path to the data file relative to your base directory, where your `config.toml` is.
|
||||||
|
@ -214,8 +214,8 @@ By default, the response body will be returned with no parsing. This can be chan
|
||||||
|
|
||||||
#### Data Caching
|
#### Data Caching
|
||||||
|
|
||||||
Data file loading and remote requests are cached in memory during build, so multiple requests aren't made to the same endpoint.
|
Data file loading and remote requests are cached in memory during build, so multiple requests aren't made to the same endpoint.
|
||||||
URLs are cached based on the URL, and data files are cached based on the files modified time.
|
URLs are cached based on the URL, and data files are cached based on the files modified time.
|
||||||
The format is also taken into account when caching, so a request will be sent twice if it's loaded with 2 different formats.
|
The format is also taken into account when caching, so a request will be sent twice if it's loaded with 2 different formats.
|
||||||
|
|
||||||
### `trans`
|
### `trans`
|
||||||
|
|
Loading…
Reference in a new issue