mirror of
https://github.com/getzola/zola
synced 2024-12-12 21:32:29 +00:00
ignore links to '#' (#1756)
This commit is contained in:
parent
821fa38bc1
commit
a13279ea39
1 changed files with 2 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue