Dashboard: link to other page in text #7690
Answered
by
mcanouil
XanderC137
asked this question in
Q&A
-
DescriptionAs the title says, I would want to have a clickable hyperlink in my text that brings users to another page. I can't really find documentation on something like this so if it's possible, how would I go about this? |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Nov 25, 2023
Replies: 1 comment 5 replies
-
Did you try using regular markdown syntax as described in the markdown basics page of the documentation? If that is not what you please elaborate and possibly use/share a concrete example. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As I said, it's just regular markdown.