Hello, I have this in config.toml:
# Menus
[menu]
# Navbar
[[menu.nav]]
name = "Goals"
url = "goals"
weight = 1
[[menu.nav]]
name = "Achievements"
url = "achievements"
weight = 2
[[menu.nav]]
name = "Contact"
url = "#contact"
weight = 3
I would like the contact page to point to #contact instead of an absolute URL /contact but let the other ones point to absolute URLs. How can I do that in config.toml? Thank you!