Add doc comments describing fields on externalfiles::ExternalHtml.
This commit is contained in:
parent
fd073cf4a3
commit
f410da5cbe
1 changed files with 6 additions and 0 deletions
|
|
@ -16,8 +16,14 @@ use std::str;
|
|||
|
||||
#[derive(Clone)]
|
||||
pub struct ExternalHtml{
|
||||
/// Content that will be included inline in the <head> section of a
|
||||
/// rendered Markdown file or generated documentation
|
||||
pub in_header: String,
|
||||
/// Content that will be included inline between <body> and the content of
|
||||
/// a rendered Markdown file or generated documentation
|
||||
pub before_content: String,
|
||||
/// Content that will be included inline between the content and </body> of
|
||||
/// a rendered Markdown file or generated documentation
|
||||
pub after_content: String
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue