-
DescriptionI am building a website in quarto and i want to create a page link for PAGE_B.qmd in PAGE_A. qmd. PAGE_B.qmd is in ROOT_DIRECTORY/FOLDER_B/PAGE_B.qmd whereas PAGE_A.qmd is in ROOT_DIRECTORY/FOLDER_A/PAGE_A.qmd. In PAGE_A.qmd, i created link to I tried linking using relative path that is Any solutions to how i can create this linking in quarto is dearly appreciated |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You have the syntax for relative path wrong: it's |
Beta Was this translation helpful? Give feedback.
You have the syntax for relative path wrong: it's
..
. You can also use/FOLDER_B/PAGE_B.qmd
which is a quarto-specific feature that ensures those paths are always resolved with respect to the website root.