-
Notifications
You must be signed in to change notification settings - Fork 984
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complete output for get_taxonomy in the documentation #2204
Merged
Conversation
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
Complete the documentation for the output of the tera function `get_taxonomy` to include the `lang` and `permalink` overlooked fields.
Keats
approved these changes
May 3, 2023
Thanks! |
theowenyoung
added a commit
to theowenyoung/zola
that referenced
this pull request
Jun 4, 2023
* 'master' of https://github.com/getzola/zola: Using cargo install (getzola#2218) Documented CNAME file for custom domains (getzola#2219) Clarifying documentation around themes. (getzola#1541) remove libsass from build instructions (getzola#2217) Add gburghoorn example to EXAMPLES.md (getzola#2212) Complete output for get_taxonomy in the documentation (getzola#2204) Update themes gallery (getzola#2203) Fix typo in page.md (getzola#2192) docs: update expired Documents documentation (getzola#2185) Update themes gallery (getzola#2180) Update deploy action to the latest version and make version consistant (getzola#2173) Update docs Update snap minor updates to overview docs (getzola#2158) Update documentation for multilingual use of taxonomies (getzola#2157) Update Metainfo (getzola#2148)
biodranik
pushed a commit
to biodranik/zola
that referenced
this pull request
Sep 12, 2023
Complete the documentation for the output of the tera function `get_taxonomy` to include the `lang` and `permalink` overlooked fields. Co-authored-by: Xavier B <>
technimad
pushed a commit
to technimad/zola
that referenced
this pull request
Sep 30, 2023
Complete the documentation for the output of the tera function `get_taxonomy` to include the `lang` and `permalink` overlooked fields. Co-authored-by: Xavier B <>
Drodt
pushed a commit
to DerDrodt/zola
that referenced
this pull request
Oct 10, 2023
Complete the documentation for the output of the tera function `get_taxonomy` to include the `lang` and `permalink` overlooked fields. Co-authored-by: Xavier B <>
fredr
pushed a commit
to fredr/zola
that referenced
this pull request
Oct 21, 2023
Complete the documentation for the output of the tera function `get_taxonomy` to include the `lang` and `permalink` overlooked fields. Co-authored-by: Xavier B <>
selfisekai
pushed a commit
to selfisekai/zola
that referenced
this pull request
Nov 3, 2023
Complete the documentation for the output of the tera function `get_taxonomy` to include the `lang` and `permalink` overlooked fields. Co-authored-by: Xavier B <>
Newbytee
pushed a commit
to Newbytee/zola
that referenced
this pull request
Dec 19, 2023
Complete the documentation for the output of the tera function `get_taxonomy` to include the `lang` and `permalink` overlooked fields. Co-authored-by: Xavier B <>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The current documentation on the tera function
get_taxonomy
does not mention eitherlang
orpermalink
fields, that are nonetheless returned by the function as the following template extract shows:This PR simply adds the two fields to the type of output for
get_taxonomy
in the documentation.