Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix examples in Links page #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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