ignore links to '#' (#1756)

This commit is contained in:
Michael Clayton 2022-02-09 05:02:14 -05:00 committed by Vincent Prouillet
parent 821fa38bc1
commit a13279ea39

View file

@ -96,6 +96,8 @@ fn fix_link(
if is_external_link(link) {
external_links.push(link.to_owned());
link.to_owned()
} else if link == "#" {
link.to_string()
} else if link.starts_with("#") {
// local anchor without the internal zola path
if let Some(current_path) = context.current_page_path {