We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
externalfiles::ExternalHtml
1 parent fd073cf commit f410da5Copy full SHA for f410da5
src/librustdoc/externalfiles.rs
@@ -16,8 +16,14 @@ use std::str;
16
17
#[derive(Clone)]
18
pub struct ExternalHtml{
19
+ /// Content that will be included inline in the <head> section of a
20
+ /// rendered Markdown file or generated documentation
21
pub in_header: String,
22
+ /// Content that will be included inline between <body> and the content of
23
+ /// a rendered Markdown file or generated documentation
24
pub before_content: String,
25
+ /// Content that will be included inline between the content and </body> of
26
27
pub after_content: String
28
}
29
0 commit comments