Rollup merge of #91054 - camelid:fix-tags, r=GuillaumeGomez

rustdoc: Fix some unescaped HTML tags in docs

They were being interpreted literally.
This commit is contained in:
Matthias Krüger 2021-11-20 01:09:45 +01:00 committed by GitHub
commit 54bc33367c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,13 +8,13 @@
#[derive(Clone, Debug, Serialize)]
crate struct ExternalHtml {
/// Content that will be included inline in the <head> section of a
/// Content that will be included inline in the `<head>` section of a
/// rendered Markdown file or generated documentation
crate in_header: String,
/// Content that will be included inline between <body> and the content of
/// Content that will be included inline between `<body>` and the content of
/// a rendered Markdown file or generated documentation
crate before_content: String,
/// Content that will be included inline between the content and </body> of
/// Content that will be included inline between the content and `</body>` of
/// a rendered Markdown file or generated documentation
crate after_content: String,
}