about summary refs log tree commit diff
path: root/src/librustdoc/html/markdown.rs
AgeCommit message (Expand)AuthorLines
2020-04-23Fix librustdoc error due to `as_local_hir_id` changesmarmeladema-2/+2
2020-04-23Create new rustdoc lint to check for code blocks tagsGuillaume Gomez-4/+114
2020-04-16Dogfood or_patterns in rustdocJosh Stone-2/+2
2020-03-31more clippy fixesMatthias Krüger-64/+59
2020-03-07Use ?-operator in more places (clippy::question_mark, had some false negative...Matthias Krüger-5/+1
2020-03-07rustdoc: don't call into_iter() on iterator. (clippy::identity_conversion)Matthias Krüger-1/+1
2020-03-05Rollup merge of #69736 - matthiaskrgr:even_more_clippy, r=Dylan-DPCDylan DPC-6/+2
2020-03-05Use simple 'for i in x' loops instead of 'while let Some(x) = x.next()' loops...Matthias Krüger-6/+2
2020-03-04Use .as_deref() instead of .as_ref().map(Deref::deref) (clippy::option_as_ref...Matthias Krüger-2/+2
2020-02-29use .iter() instead of .into_iter() on references.Matthias Krüger-2/+2
2020-02-27use char instead of &str for single char patternsMatthias Krüger-1/+1
2020-02-24don't explicitly compare against true or falseMatthias Krüger-2/+2
2020-02-14Update pulldown-cmark dependencyGuillaume Gomez-75/+95
2020-01-16Don't keep link title either, text is generated outside of the link tagGuillaume Gomez-2/+1
2020-01-14Prevent urls in headingsGuillaume Gomez-2/+6
2020-01-02Normalize `syntax::edition` imports.Mazdak Farrokhzad-3/+3
2019-12-22Format the worldMark Rousskov-126/+118
2019-11-08rustdoc: Stabilize `edition` annotation.Eric Huss-3/+1
2019-09-13Move Toc printing from fmt::DisplayMark Rousskov-1/+1
2019-09-10Auto merge of #60387 - Goirad:test-expansion, r=ollie27bors-11/+32
2019-09-07rustdoc: fix diagnostic with mixed code block stylesEric Huss-1/+4
2019-09-03added rustdoc book documentation, improved behavior when unstable flag not pr...Dario Gonzalez-10/+4
2019-09-03added feature gate enable-per-target-ignoresDario Gonzalez-6/+11
2019-09-03Added ability to crosscompile doctestsDario Gonzalez-6/+28
2019-08-26Shorten line during rendering instead of in markdownMark Rousskov-19/+1
2019-08-11Drop RefCell from IdMap in markdown renderingMark Rousskov-12/+7
2019-08-11Remove fmt::Display impls on Markdown structsMark Rousskov-31/+26
2019-08-11Remove thread-local for playground configMark Rousskov-93/+110
2019-08-02librustdoc: Unconfigure tests during normal buildVadim Petrochenkov-24/+3
2019-06-16Fix tidyVadim Petrochenkov-16/+21
2019-06-16Separate librustcdoc modulechansuke-127/+1
2019-05-29upgrade rustdoc's `pulldown-cmark` to 0.5.2Andy Russell-5/+5
2019-05-06update rustdoc doc testQuietMisdreavus-1/+5
2019-05-06update rustdoc unit testsQuietMisdreavus-4/+7
2019-05-06set the default edition when pre-parsing a doctestQuietMisdreavus-25/+29
2019-04-22upgrade rustdoc's pulldown-cmark to 0.4.1Andy Russell-80/+37
2019-02-23Transition librustdoc to 2018 editionHirokazu Hata-13/+13
2019-02-10rustc: doc commentsAlexander Regueiro-5/+5
2019-01-14rustdoc: check code block syntax in early passAndy Russell-0/+109
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-13Split on words insteadGuillaume Gomez-2/+16
2018-12-11Remove unneeded extra chars to reduce search-index sizeGuillaume Gomez-1/+5
2018-11-10Remove short doc where it starts with a codeblockGuillaume Gomez-22/+28
2018-11-04add Debug impls for the Options structsQuietMisdreavus-1/+1
2018-11-02swap uses of Matches with pre-parsed argsQuietMisdreavus-1/+1
2018-10-09Add lint for doc without codeblocksGuillaume Gomez-2/+4
2018-09-20Add a documentation banner for edition specific codePhilip Munksgaard-13/+44
2018-09-19Add support for running doc test in specific editionPhilip Munksgaard-18/+32
2018-08-28Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc.Eduard-Mihai Burtescu-5/+6
2018-08-07Avoid unnecessary pattern matching against Option and Resultljedrz-1/+1