1
Fork 0

Rollup merge of #32715 - nrc:rustdoc-highlight, r=cmr

rustdoc: factor out function for getting inner html of highlighted source
This commit is contained in:
Manish Goregaokar 2016-04-05 16:43:22 +05:30
commit e8ab71fa00
3 changed files with 49 additions and 26 deletions

View file

@ -2640,16 +2640,16 @@ impl<'a> fmt::Display for Source<'a> {
write!(fmt, "<span id=\"{0}\">{0:1$}</span>\n", i, cols)?;
}
write!(fmt, "</pre>")?;
write!(fmt, "{}", highlight::highlight(s, None, None))?;
write!(fmt, "{}", highlight::render_with_highlighting(s, None, None))?;
Ok(())
}
}
fn item_macro(w: &mut fmt::Formatter, cx: &Context, it: &clean::Item,
t: &clean::Macro) -> fmt::Result {
w.write_str(&highlight::highlight(&t.source,
Some("macro"),
None))?;
w.write_str(&highlight::render_with_highlighting(&t.source,
Some("macro"),
None))?;
render_stability_since_raw(w, it.stable_since(), None)?;
document(w, cx, it)
}