Add documentation and tests
This commit is contained in:
parent
d2565af000
commit
10b69e60c8
|
@ -132,6 +132,7 @@ The following configuration options are available:
|
||||||
- **theme:** mdBook comes with a default theme and all the resource files needed
|
- **theme:** mdBook comes with a default theme and all the resource files needed
|
||||||
for it. But if this option is set, mdBook will selectively overwrite the theme
|
for it. But if this option is set, mdBook will selectively overwrite the theme
|
||||||
files with the ones found in the specified folder.
|
files with the ones found in the specified folder.
|
||||||
|
- **default-theme:** The theme to be used by default. Defaults to `light`.
|
||||||
- **curly-quotes:** Convert straight quotes to curly quotes, except for those
|
- **curly-quotes:** Convert straight quotes to curly quotes, except for those
|
||||||
that occur in code blocks and code spans. Defaults to `false`.
|
that occur in code blocks and code spans. Defaults to `false`.
|
||||||
- **google-analytics:** If you use Google Analytics, this option lets you enable
|
- **google-analytics:** If you use Google Analytics, this option lets you enable
|
||||||
|
|
|
@ -570,6 +570,7 @@ mod tests {
|
||||||
|
|
||||||
[output.html]
|
[output.html]
|
||||||
theme = "./themedir"
|
theme = "./themedir"
|
||||||
|
default-theme = "rust"
|
||||||
curly-quotes = true
|
curly-quotes = true
|
||||||
google-analytics = "123456"
|
google-analytics = "123456"
|
||||||
additional-css = ["./foo/bar/baz.css"]
|
additional-css = ["./foo/bar/baz.css"]
|
||||||
|
@ -609,6 +610,7 @@ mod tests {
|
||||||
google_analytics: Some(String::from("123456")),
|
google_analytics: Some(String::from("123456")),
|
||||||
additional_css: vec![PathBuf::from("./foo/bar/baz.css")],
|
additional_css: vec![PathBuf::from("./foo/bar/baz.css")],
|
||||||
theme: Some(PathBuf::from("./themedir")),
|
theme: Some(PathBuf::from("./themedir")),
|
||||||
|
default_theme: Some(String::from("rust")),
|
||||||
playpen: playpen_should_be,
|
playpen: playpen_should_be,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue