Merge pull request #1309 from nerosnm/add-missing-space
Fix missing space before draft chapter titles
This commit is contained in:
commit
4b773024ae
|
@ -108,32 +108,32 @@ impl HelperDef for RenderToc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Link
|
// Link
|
||||||
let path_exists = if let Some(path) = item.get("path") {
|
let path_exists = if let Some(path) =
|
||||||
if !path.is_empty() {
|
item.get("path")
|
||||||
out.write("<a href=\"")?;
|
.and_then(|p| if p.is_empty() { None } else { Some(p) })
|
||||||
|
{
|
||||||
|
out.write("<a href=\"")?;
|
||||||
|
|
||||||
let tmp = Path::new(item.get("path").expect("Error: path should be Some(_)"))
|
let tmp = Path::new(item.get("path").expect("Error: path should be Some(_)"))
|
||||||
.with_extension("html")
|
.with_extension("html")
|
||||||
.to_str()
|
.to_str()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
// Hack for windows who tends to use `\` as separator instead of `/`
|
// Hack for windows who tends to use `\` as separator instead of `/`
|
||||||
.replace("\\", "/");
|
.replace("\\", "/");
|
||||||
|
|
||||||
// Add link
|
// Add link
|
||||||
out.write(&utils::fs::path_to_root(¤t_path))?;
|
out.write(&utils::fs::path_to_root(¤t_path))?;
|
||||||
out.write(&tmp)?;
|
out.write(&tmp)?;
|
||||||
out.write("\"")?;
|
out.write("\"")?;
|
||||||
|
|
||||||
if path == ¤t_path {
|
if path == ¤t_path {
|
||||||
out.write(" class=\"active\"")?;
|
out.write(" class=\"active\"")?;
|
||||||
}
|
|
||||||
|
|
||||||
out.write(">")?;
|
|
||||||
true
|
|
||||||
} else {
|
|
||||||
false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
out.write(">")?;
|
||||||
|
true
|
||||||
} else {
|
} else {
|
||||||
|
out.write("<div>")?;
|
||||||
false
|
false
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -165,6 +165,8 @@ impl HelperDef for RenderToc {
|
||||||
|
|
||||||
if path_exists {
|
if path_exists {
|
||||||
out.write("</a>")?;
|
out.write("</a>")?;
|
||||||
|
} else {
|
||||||
|
out.write("</div>")?;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Render expand/collapse toggle
|
// Render expand/collapse toggle
|
||||||
|
|
Loading…
Reference in New Issue