← Back
Link
This component just acts as syntactic sugar for displaying links inline in your text.
Input:
[link text:"the text" url:"https://some.url" /]
is equivalent to [a href:"https://some.url"]the text[/a].
Output:
Props
- text
string
The text to display
- Example:
"This is a hyperlink"
- Example:
- url
string
The URL to open when the link is clicked
- Example:
"https://idyll-lang.org/"
- Example:
- target
string
Specifies where to open the linked document
- Example:
"_blank"
- Example: