Link Syntax
To insert hyperlinks in your documents, use a link tag. Link tag syntax is the same as a simple text tag:
{{ MyLink }}
Links are defined in your JSON data using the link object structure shown below:
{
"MyLink": {
"_type": "link",
"target": "https://example.com",
"text": "Visit Our Website",
"tooltip": "Learn more about our services"
}
}
This will create a link to "https://example.com" with the text "Visit Our Website" and a tooltip that appears when hovering over the link.

Links maintain the formatting of the link tag when generated (bold, underline, font size, color, etc.). They are not underlined by default. To underline a link, underline the link tag in the template.
Link Properties
| Property | Type | Description |
|---|---|---|
_type | string | Must be set to "link" |
target | string | Required. The URL for the link |
text | string | Optional. Display text for the link. If not provided, the target URL will be used |
tooltip | string | Optional. Tooltip text that appears when hovering over the link |
Examples
Simple Example
{
"MyLink": {
"_type": "link",
"target": "https://example.com"
}
}
Since text is not provided here, the target URL will be used as the link text. This will create a link with the text "https://example.com"
https://example.com
Custom Text and Tooltip
{
"MyLink": {
"_type": "link",
"target": "https://www.company.com",
"text": "Visit Our Website",
"tooltip": "Learn more about our services"
}
}
The resulting document will look like this:
Visit Our Website