summary refs log tree commit diff
path: root/src/librustdoc/html/render.rs
AgeCommit message (Collapse)AuthorLines
2013-09-25rustdoc: Highlight function namesAlex Crichton-2/+2
Closes #9460
2013-09-25rustdoc: Start rendering variants (redirect to enum)Alex Crichton-1/+12
This allows reasonable behavior when an enum is clicked in an import.
2013-09-25rustdoc: Linkify all reexports.Alex Crichton-2/+50
This way each component of a reexport path is click-able to the destination that it's referencing.
2013-09-25rustdoc: Implement stripping based on privacyAlex Crichton-4/+13
This will probably need to get tweaked once the privacy rules have been fully agreed on, but for now this has all of the infrastructure necessary for filtering out private items. Closes #9410
2013-09-25rustdoc: Emit purity to function dox for traitsAlex Crichton-2/+3
Closes #3804
2013-09-25rustdoc: Use sundown for markdown highlightingAlex Crichton-19/+19
This takes rendering times of documentation down from 30s to 0.5s. Kinda sad that none of the parallelism is needed, but oh well! Closes #7380 cc #3546
2013-09-22Place *all* rustdoc output in doc/{crate}Alex Crichton-12/+7
2013-09-22rustdoc: Out with the old, in with the newAlex Crichton-0/+1108
Removes old rustdoc, moves rustdoc_ng into its place instead (plus drops the _ng suffix). Also shreds all reference to rustdoc_ng from the Makefile rules.