Auto merge of #31626 - mitaa:rdoc-srch-escape, r=alexcrichton

Maybe they should be Markdown rendered instead, though that doesn't really seem to work all that well.

fixes #31059

r? @alexcrichton
This commit is contained in:
bors 2016-02-14 12:13:58 +00:00
commit f3619ce026
1 changed files with 2 additions and 2 deletions

View File

@ -554,7 +554,7 @@ fn build_index(krate: &clean::Crate, cache: &mut Cache) -> String {
ty: shortty(item),
name: item.name.clone().unwrap(),
path: fqp[..fqp.len() - 1].join("::"),
desc: shorter(item.doc_value()),
desc: Escape(&shorter(item.doc_value())).to_string(),
parent: Some(did),
search_type: get_index_search_type(&item, parent_basename),
});
@ -1065,7 +1065,7 @@ impl DocFolder for Cache {
ty: shortty(&item),
name: s.to_string(),
path: path.join("::").to_string(),
desc: shorter(item.doc_value()),
desc: Escape(&shorter(item.doc_value())).to_string(),
parent: parent,
search_type: get_index_search_type(&item, parent_basename),
});