docs: more Markdown stuff #411

This commit is contained in:
Sören Weber 2022-12-02 16:05:06 +01:00
parent ccb26cf7c5
commit f0930cd78f
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D

View file

@ -435,7 +435,7 @@ Blockquotes can also be nested.
### Autolink
In GFM (GitHub Flavored Markdown) an absolute URLs will automatically be converted into a link.
In GFM (GitHub Flavored Markdown) absolute URLs will automatically be converted into a link.
````markdown
This is a link to https://example.com.
@ -470,6 +470,22 @@ For even further information, you can add an additional text, displayed in a too
[Upstage](https://github.com/upstage/ "Visit Upstage!")
{{% /notice %}}
### Link References
Links can be simplyfied for recurring reuse by using a reference ID to later define the URL location. This simplyfies writing if you want to use a link more than once in a document.
````markdown
[Example][somelinkID]
[somelinkID]: https://example.com "Go to example domain"
````
{{% notice style="secondary" icon="eye" title="Result" %}}
[Example][somelinkID]
[somelinkID]: https://example.com "Go to example domain"
{{% /notice %}}
### Footnotes
Footnotes work mostly like reference-style links. A footnote is made of two things, a marker in the text that will become a superscript number and a footnote definition that will be placed in a list of footnotes.
@ -518,7 +534,7 @@ Images have a similar syntax to links but include a preceding exclamation mark.
![Spock](https://octodex.github.com/images/spocktocat.png?width=20vw&classes=bg-white)
{{% /notice %}}
### Images with Tooltip
### Image with Tooltip
Like links, images can also be given a tooltip.