Skip to content

Commit

Permalink
fix examples in Links page
Browse files Browse the repository at this point in the history
  • Loading branch information
gocadimic committed Nov 8, 2023
1 parent 02ef2db commit 13db87f
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions content/en/links.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<https://www.omaspecworks.org/>
```

## Extended Links
* [To Sections](#to-sections)
* [To Figures](#to-figures)
Expand Down

0 comments on commit 13db87f

Please sign in to comment.