Is there a way to have a Markdown link work with f...
# questions
s
Is there a way to have a Markdown link work with frontmatter variables? Like:
Copy code
yaml
myLink: https://github.com
Then calling in markdown with:
Copy code
md
# Summary

Learn more at [the website]({{fm.myLink}})
Right now it looks like I can only do:
Copy code
md
# Summary

Learn more at the website: {{fm.myLink}}