From 13db87f146ad9ff12641831e86a4e6f0220ebd8f Mon Sep 17 00:00:00 2001 From: Gordana Dimic Date: Wed, 8 Nov 2023 18:51:43 +0100 Subject: [PATCH] fix examples in Links page --- content/en/links.md | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/content/en/links.md b/content/en/links.md index 2dedfcb..cd05170 100644 --- a/content/en/links.md +++ b/content/en/links.md @@ -14,23 +14,33 @@ The usage of `links` allows us to connect text inside and across sections, as we ```md [Markdown Guide](https://www.markdownguide.org) ``` +* Adding titles +[I'm an inline-style link with a title](https://www.omaspecworks.org/ "OMA Homepage") -* Additional link styles include: - +Written in markdown: ```md -[I'm an inline-style link](https://www.omaspecworks.org/) +[I'm an inline-style link with a title](https://www.omaspecworks.org/ "OMA Homepage") ``` -or +* Additional link styles include emphasizing and denoting links as code: +**[Markdown Guide](https://www.markdownguide.org)** or *[Markdown Guide](https://www.markdownguide.org)*, see [`markdown code`](#markdowncode) +* Written in markdown: ```md -[I'm an inline-style link with a title](https://www.omaspecworks.org/ "OMA Homepage") +**[Markdown Guide](https://www.markdownguide.org)** +*[Markdown Guide](https://www.markdownguide.org)* +See [`markdown code`](#markdowncodecode) ``` -* URLs and URLs in angle brackets will automatically be converted to links e.g. +* URLs and emails in angle brackets will automatically be converted to links e.g. https://www.omaspecworks.org/ +* Written in markdown: +```md + +``` + ## Extended Links * [To Sections](#to-sections) * [To Figures](#to-figures)