rust/tests/rustdoc-js/summaries.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
592 B
Rust
Raw Normal View History

2020-11-24 12:33:41 +08:00
#![crate_type = "lib"]
#![crate_name = "summaries"]
2021-11-29 03:05:24 +08:00
#![allow(rustdoc::broken_intra_doc_links)]
//! This *summary* has a [link], [`code`], and [`Sidebar2`] intra-doc.
2020-11-24 12:33:41 +08:00
//!
//! This is the second paragraph. It should not be rendered.
//! To test that intra-doc links are resolved properly, [`code`] should render
//! the square brackets, and [`Sidebar2`] should not.
2020-11-24 12:33:41 +08:00
//!
//! [link]: https://example.com
/// This `code` will be rendered in a code tag.
///
/// This text should not be rendered.
pub struct Sidebar;
/// ```text
/// this block should not be rendered
/// ```
pub struct Sidebar2;