Links

Description

Links provide navigation to other documents, sections, or external resources. The parser supports inline links, reference links, automatic links, and links with custom attributes for behavior control.

.md markdown syntax

[Link text](https://example.com)
[Link with title](https://example.com "Link Title")
[Link text][reference-id]
[Another link][1]

[reference-id]: https://example.com
[1]: https://another-example.com "Optional Title"
<https://example.com>
<email@example.com>

.adf-schema.json schema

Examples

Last updated