about summary refs log tree commit diff
path: root/src/librustdoc/html/templates/STYLE.md
AgeCommit message (Collapse)AuthorLines
2023-06-28accept review suggestionTshepang Mbambo-1/+1
Co-authored-by: Dániel Buga <bugadani@gmail.com>
2023-06-28we are migrating to askamaTshepang Mbambo-1/+1
2023-03-16Fix invalid markdown link referencesDaniPopes-7/+7
2023-03-06Update documentation for HTML templates styleGuillaume Gomez-13/+14
2022-01-19Move back templates into html folderGuillaume Gomez-0/+37
2022-01-10Migrate rustdoc from Tera to AskamaDirkjan Ochtman-37/+0
See #84419.
2021-06-20Use Tera templates for rustdoc.Jacob Hoffman-Andrews-0/+37
Replaces a format!() call in layout::render with a template expansion. Introduces a `templates` field in SharedContext so parts of rustdoc can share pre-rendered templates. This currently builds in a copy of the single template available, like with static files. However, future work can make this live-loadable with a perma-unstable flag, to make rustdoc developers' work easier.