index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustdoc
/
html
/
render
/
print_item.rs
Age
Commit message (
Expand
)
Author
Lines
2025-09-25
rustdoc: Slightly clean up attr rendering
León Orell Valerian Liehr
-4
/
+4
2025-08-28
Create new `Item::is_fake_item` method as equivalent to check for `is_primiti...
Guillaume Gomez
-1
/
+1
2025-08-28
Add new `doc(attribute = "...")` attribute
Guillaume Gomez
-3
/
+6
2025-08-24
rustdoc: render attributes in Field and Variants sections
Karol Zwolak
-3
/
+21
2025-08-23
rustdoc: make attributes render consistently
Karol Zwolak
-51
/
+49
2025-08-15
rustdoc-search: search backend with partitioned suffix tree
Michael Howell
-0
/
+1
2025-08-10
rustdoc: Use `discr`s `Display` impl to render the value with the correct sig...
Eval EXEC
-5
/
+3
2025-07-19
Fix clippy lints in librustdoc
Guillaume Gomez
-42
/
+38
2025-07-17
Improve path segment joining.
Nicholas Nethercote
-4
/
+5
2025-07-15
rustdoc-json: Structured attributes
Alona Enraght-Moony
-2
/
+1
2025-06-28
Rollup merge of #142987 - lolbinarycat:rustdoc-non_exhaustive-enum-v-142599, ...
Matthias Krüger
-0
/
+1
2025-06-26
rustdoc: show attributes on enum variants
binarycat
-0
/
+1
2025-06-24
rustdoc: Don't mark `#[target_feature]` functions as ⚠
Alona Enraght-Moony
-1
/
+2
2025-06-22
Port `#[no_mangle]` to new attribute parsing infrastructure
Jonathan Brouwer
-1
/
+1
2025-05-30
Auto merge of #141573 - nnethercote:rustdoc-alloc-cleanups, r=camelid
bors
-15
/
+26
2025-05-26
Avoid some unnecessary cloning.
Nicholas Nethercote
-2
/
+2
2025-05-26
Rename some methods.
Nicholas Nethercote
-13
/
+24
2025-05-25
Update to new API
Guillaume Gomez
-0
/
+1
2025-05-25
Improve code
Guillaume Gomez
-37
/
+39
2025-05-25
Tweak attribute rendering depending on wether or not it is a type alias
Guillaume Gomez
-17
/
+83
2025-05-25
Rename the `document_*` argument/field into `is_type_alias`
Guillaume Gomez
-11
/
+11
2025-05-25
Unify rendering of type aliases without ADT items
Guillaume Gomez
-134
/
+134
2025-05-25
Rename `clean::Enum::variants` method into `non_stripped_variants`
Guillaume Gomez
-1
/
+1
2025-04-17
Rollup merge of #139943 - fmease:rustdoc-ixcre-trait-aliases, r=GuillaumeGomez
Matthias Krüger
-2
/
+3
2025-04-17
Support inlined cross-crate re-exported trait aliases
León Orell Valerian Liehr
-2
/
+3
2025-04-15
Avoid using `kw::Empty` when comparing names.
Nicholas Nethercote
-4
/
+7
2025-04-06
Update rinja version in `generate-copyright`
Guillaume Gomez
-2
/
+2
2025-04-03
Update to new rinja version (askama)
Guillaume Gomez
-5
/
+5
2025-03-06
Manual, post-`clippy --fix` cleanups
Yotam Ofek
-9
/
+7
2025-03-06
`x clippy src/librustdoc --fix`
Yotam Ofek
-4
/
+2
2025-03-04
Adapt `librustdoc` to 2024 edition lifetieme capture rules
Yotam Ofek
-207
/
+120
2025-02-23
return `impl fmt::Display` in more places instead of writing to strings
Yotam Ofek
-1528
/
+1699
2025-02-17
librustdoc: more usages of `Joined::joined`
Yotam Ofek
-16
/
+12
2025-02-14
librustdoc: make `item_path` formatting lazy
Yotam Ofek
-5
/
+5
2025-02-14
librustdoc: make `notable_traits_button` formatting lazy
Yotam Ofek
-2
/
+1
2025-02-14
librustdoc: make `bounds` formatting lazy
Yotam Ofek
-23
/
+22
2025-02-14
librustdoc: create `MaybeDisplay` helper for `Option<T: Display>` types
Yotam Ofek
-1
/
+1
2025-02-12
Nuke `Buffer` abstraction from `librustdoc` 💣
Yotam Ofek
-257
/
+347
2025-02-05
Auto merge of #136244 - yotamofek:pr/rustdoc-join-iter, r=GuillaumeGomez
bors
-31
/
+27
2025-02-04
librustdoc: create a helper for separating elements of an iterator instead of...
Yotam Ofek
-31
/
+27
2025-01-30
fix(rustdoc): always use a channel when linking to doc.rust-lang.org
Alexis (Poliorcetics) Bourget
-1
/
+1
2025-01-23
Auto merge of #135494 - yotamofek:rustdoc-fmt-from_fn, r=fmease
bors
-13
/
+13
2025-01-22
rustdoc: use std's (unstable) `fmt::from_fn` instead of open-coding it
Yotam Ofek
-13
/
+13
2025-01-22
rustdoc: Finalize dyn compatibility renaming
León Orell Valerian Liehr
-2
/
+1
2025-01-18
Remove more CSS classes
Guillaume Gomez
-17
/
+8
2025-01-17
Handle reexports items list a bit differently since they cannot have document...
Guillaume Gomez
-7
/
+5
2025-01-17
Replace ul/li list with dl/dd/dt elements
Guillaume Gomez
-19
/
+11
2025-01-14
Add hir::HeaderSafety to make follow up commits simpler
Oli Scherer
-1
/
+1
2024-12-25
Improve rustdoc code
Guillaume Gomez
-1
/
+1
2024-12-20
Rollup merge of #134321 - dtolnay:docassocconst, r=fmease
Jacob Pratt
-2
/
+4
[next]