Add trailing slash to multilingual section path (#772)
This commit is contained in:
parent
be0687ba6e
commit
0238e34047
|
@ -113,7 +113,11 @@ impl Section {
|
||||||
section.reading_time = Some(reading_time);
|
section.reading_time = Some(reading_time);
|
||||||
let path = section.file.components.join("/");
|
let path = section.file.components.join("/");
|
||||||
if section.lang != config.default_language {
|
if section.lang != config.default_language {
|
||||||
section.path = format!("{}/{}", section.lang, path);
|
if path.is_empty() {
|
||||||
|
section.path = format!("{}/", section.lang);
|
||||||
|
} else {
|
||||||
|
section.path = format!("{}/{}/", section.lang, path);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
section.path = format!("{}/", path);
|
section.path = format!("{}/", path);
|
||||||
}
|
}
|
||||||
|
@ -381,4 +385,21 @@ Bonjour le monde"#
|
||||||
assert_eq!(section.lang, "fr".to_string());
|
assert_eq!(section.lang, "fr".to_string());
|
||||||
assert_eq!(section.permalink, "http://a-website.com/fr/");
|
assert_eq!(section.permalink, "http://a-website.com/fr/");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn can_make_links_to_translated_subsections_with_trailing_slash() {
|
||||||
|
let mut config = Config::default();
|
||||||
|
config.languages.push(Language { code: String::from("fr"), rss: false });
|
||||||
|
let content = r#"
|
||||||
|
+++
|
||||||
|
+++
|
||||||
|
Bonjour le monde"#
|
||||||
|
.to_string();
|
||||||
|
let res =
|
||||||
|
Section::parse(Path::new("content/subcontent/_index.fr.md"), &content, &config, &PathBuf::new());
|
||||||
|
assert!(res.is_ok());
|
||||||
|
let section = res.unwrap();
|
||||||
|
assert_eq!(section.lang, "fr".to_string());
|
||||||
|
assert_eq!(section.permalink, "http://a-website.com/fr/subcontent/");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue