about summary refs log tree commit diff
path: root/src/librustdoc/externalfiles.rs
AgeCommit message (Expand)AuthorLines
2023-12-18Rename many `DiagCtxt` arguments.Nicholas Nethercote-11/+11
2023-12-18Rename `Handler` as `DiagCtxt`.Nicholas Nethercote-3/+3
2023-09-17Don't emit an error if the `custom_code_classes_in_docs` feature is disabled ...Guillaume Gomez-0/+4
2023-08-16Use more named format argsGuillaume Gomez-1/+5
2023-08-16Improve code readability by moving fmt args directly into the stringGuillaume Gomez-5/+3
2023-05-03Restrict `From<S>` for `{D,Subd}iagnosticMessage`.Nicholas Nethercote-2/+2
2022-05-21Remove `crate` visibility modifier in libs, testsJacob Pratt-7/+7
2022-03-04librustdoc: adopt let else in more placesest31-4/+1
2021-11-19rustdoc: Fix some unescaped HTML tags in docsNoah Lev-3/+3
2021-10-04heading_level: u32 -> heading_offset: HeadingOffsetMukund Lakshman-3/+3
2021-10-04No need to default offset since we always override it.Mukund Lakshman-2/+2
2021-10-04Change `Markdown(...)` to `Markdown { ... }`Mukund Lakshman-2/+20
2021-10-04librustdoc: Use correct heading levels.Mukund Lakshman-2/+2
2021-06-20Use Tera templates for rustdoc.Jacob Hoffman-Andrews-1/+3
2020-11-15Make all rustdoc functions and structs crate-privateJoshua Nelson-7/+7
2020-11-07Allow making `RUSTC_BOOTSTRAP` conditional on the crate nameJoshua Nelson-2/+2
2020-07-15rustdoc: Rename internal API fns to `into_string`Lzu Tao-2/+2
2020-01-10nix syntax::errors & prefer rustc_errors over errorsMazdak Farrokhzad-4/+3
2020-01-02Normalize `syntax::edition` imports.Mazdak Farrokhzad-1/+1
2019-12-22Format the worldMark Rousskov-21/+31
2019-11-30move UnstableFeatures -> rustc_featureMazdak Farrokhzad-1/+1
2019-08-11Reduce nesting in externalfiles implementationMark Rousskov-28/+14
2019-08-11Drop RefCell from IdMap in markdown renderingMark Rousskov-4/+2
2019-08-11Remove fmt::Display impls on Markdown structsMark Rousskov-2/+2
2019-08-11Remove thread-local for playground configMark Rousskov-4/+4
2019-05-06set the default edition when pre-parsing a doctestQuietMisdreavus-3/+6
2019-02-23Transition librustdoc to 2018 editionHirokazu Hata-2/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-04add Debug impls for the Options structsQuietMisdreavus-1/+1
2018-07-31Remove global derive_id and reset_ids functionsMark Rousskov-4/+8
2018-07-31Further extract error code switchMark Rousskov-3/+5
2018-05-14replace error/warning println with structured diagQuietMisdreavus-11/+14
2018-02-16Remove hoedown from rustdocGuillaume Gomez-4/+4
2018-01-23Auto merge of #47620 - GuillaumeGomez:multiple-themes, r=QuietMisdreavusbors-1/+1
2018-01-22Add LinkReplacer pass for pulldownManish Goregaokar-2/+2
2018-01-21Add themes optionGuillaume Gomez-1/+1
2018-01-10Use the new fs_read_write functions in rustc internalsMatt Brubeck-9/+8
2017-09-28Migrate to eprint/eprintln macros where appropriate.Corey Farwell-7/+2
2017-05-08Add markdown-[before|after]-content optionsGuillaume Gomez-1/+11
2016-10-09Remove unnecessary `pub` function classifier.Corey Farwell-1/+1
2016-10-09Make `ExternalHtml::load` short-circuited.Corey Farwell-10/+16
2016-10-09Refactor away `load_or_return` macro.Corey Farwell-23/+26
2016-10-08Add doc comments describing fields on `externalfiles::ExternalHtml`.Corey Farwell-0/+6
2016-10-08Don't construct `PathBuf` ownership if we don't need it.Corey Farwell-3/+3
2016-03-22try! -> ?Jorge Aparicio-2/+2
2015-03-23Add generic conversion traitsAaron Turon-1/+1
2015-03-13Fallout of std::old_io deprecationAlex Crichton-3/+2
2015-03-04std: Deprecate std::old_io::fsAlex Crichton-5/+11
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-2/+2
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-1/+1