Add keywords item into the sidebar
This commit is contained in:
parent
e649e90344
commit
08a8de8181
@ -5007,7 +5007,8 @@ fn sidebar_module(fmt: &mut fmt::Formatter<'_>, _it: &clean::Item,
|
||||
ItemType::Enum, ItemType::Constant, ItemType::Static, ItemType::Trait,
|
||||
ItemType::Function, ItemType::Typedef, ItemType::Union, ItemType::Impl,
|
||||
ItemType::TyMethod, ItemType::Method, ItemType::StructField, ItemType::Variant,
|
||||
ItemType::AssocType, ItemType::AssocConst, ItemType::ForeignType] {
|
||||
ItemType::AssocType, ItemType::AssocConst, ItemType::ForeignType,
|
||||
ItemType::Keyword] {
|
||||
if items.iter().any(|it| !it.is_stripped() && it.type_() == myty) {
|
||||
let (short, name) = item_ty_to_strs(&myty);
|
||||
sidebar.push_str(&format!("<li><a href=\"#{id}\">{name}</a></li>",
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
// @has foo/index.html '//h2[@id="keywords"]' 'Keywords'
|
||||
// @has foo/index.html '//a[@href="keyword.match.html"]' 'match'
|
||||
// @has foo/index.html '//div[@class="block items"]//a/@href' '#keywords'
|
||||
// @has foo/keyword.match.html '//a[@class="keyword"]' 'match'
|
||||
// @has foo/keyword.match.html '//span[@class="in-band"]' 'Keyword match'
|
||||
// @has foo/keyword.match.html '//section[@id="main"]//div[@class="docblock"]//p' 'this is a test!'
|
||||
|
Loading…
Reference in New Issue
Block a user