Sincea7c25b2957removed `in-band` from code headers, the only remaining uses of the `in-band` class are:02cd79afb8/src/librustdoc/html/render/write_shared.rs (L520-L521)02cd79afb8/src/librustdoc/html/templates/print_item.html (L2-L3)02cd79afb8/src/librustdoc/html/render/context.rs (L637-L638)02cd79afb8/src/librustdoc/html/render/mod.rs (L368-L369)02cd79afb8/src/librustdoc/html/render/mod.rs (L401-L402)02cd79afb8/src/librustdoc/html/static/js/main.js (L525)Since all of these uses are nested below `h1.fqn`, we can get rid of it, and the support code that was used for when `in-band` was part of item rendering.
21 lines
889 B
Rust
21 lines
889 B
Rust
#![crate_name = "foo"]
|
|
|
|
#![feature(rustdoc_internals)]
|
|
|
|
// @has foo/index.html '//h2[@id="primitives"]' 'Primitive Types'
|
|
// @has foo/index.html '//a[@href="primitive.i32.html"]' 'i32'
|
|
// @has foo/index.html '//div[@class="sidebar-elems"]//li/a' 'Primitive Types'
|
|
// @has foo/index.html '//div[@class="sidebar-elems"]//li/a/@href' '#primitives'
|
|
// @has foo/primitive.i32.html '//a[@class="primitive"]' 'i32'
|
|
// @has foo/primitive.i32.html '//h1[@class="fqn"]' 'Primitive Type i32'
|
|
// @has foo/primitive.i32.html '//section[@id="main-content"]//div[@class="docblock"]//p' 'this is a test!'
|
|
// @has foo/index.html '//a/@href' '../foo/index.html'
|
|
// @!has foo/index.html '//span' '🔒'
|
|
#[doc(primitive = "i32")]
|
|
/// this is a test!
|
|
mod i32{}
|
|
|
|
// @has foo/primitive.bool.html '//section[@id="main-content"]//div[@class="docblock"]//p' 'hello'
|
|
#[doc(primitive = "bool")]
|
|
/// hello
|
|
mod bool {}
|