mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-21 12:40:39 +00:00
fix bare url in contribution file (#385)
This commit is contained in:
parent
cf420ed0f9
commit
19302de78b
@ -3,7 +3,7 @@
|
||||
## Security
|
||||
|
||||
If you think you have found a **security issue**, please do not mention it in this repository.
|
||||
Instead, send an email to security@thegeeklab.de with as many details as possible so it can be handled confidential.
|
||||
Instead, send an email to `security@thegeeklab.de` with as many details as possible so it can be handled confidential.
|
||||
|
||||
## Bug Reports and Feature Requests
|
||||
|
||||
|
@ -67,10 +67,13 @@ Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclima
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
<!-- spellchecker-disable -->
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
{{< boxes "contact" >}}
|
||||
{{< box size=large title=E-Mail icon=gblog_email >}}mail [ett] example.com{{< /box >}}
|
||||
{{< box size=large title=Matrix icon=gblog_matrix >}}@john:example.com{{< /box >}}
|
||||
{{< box size=large title=XMPP icon=gblog_xmpp >}}john@example.com{{< /box >}}
|
||||
{{< /boxes >}}
|
||||
<!-- markdownlint-restore -->
|
||||
<!-- spellchecker-enable -->
|
||||
<!-- prettier-ignore-end -->
|
||||
|
@ -29,8 +29,13 @@ Buttons are styled links that can lead to local page or external link.
|
||||
|
||||
### Example
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
{{< button relref="/" >}}Get Home{{< /button >}}
|
||||
{{< button href="https://github.com/thegeeklab/hugo-geekblog" >}}Contribute{{< /button >}}
|
||||
<!-- markdownlint-restore -->
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
## Columns
|
||||
|
||||
@ -333,12 +338,15 @@ Boxes can be used to create a simple grid.
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
<!-- spellchecker-disable -->
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
{{< boxes "contact" >}}
|
||||
{{< box size=large title=E-Mail icon=gblog_email >}}mail@example.com{{< /box >}}
|
||||
{{< box size=large title=Matrix icon=gblog_matrix >}}@john:example.com{{< /box >}}
|
||||
{{< box size=large title=XMPP icon=gblog_xmpp >}}john@example.com{{< /box >}}
|
||||
{{< box size=large title=Others >}}You can also find us on the Fediverse.{{< /box >}}
|
||||
{{< /boxes >}}
|
||||
<!-- markdownlint-restore -->
|
||||
<!-- spellchecker-enable -->
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
@ -89,13 +89,12 @@ echo "Hello World"
|
||||
|
||||
**Example:**
|
||||
|
||||
<!-- markdownlint-disable -->
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
{{< highlight Shell "linenos=table" >}}
|
||||
# some code
|
||||
echo "Hello World"
|
||||
{{< /highlight >}}
|
||||
<!-- markdownlint-restore -->
|
||||
<!-- prettier-ignore-end-->
|
||||
|
||||
<!-- markdownlint-enable -->
|
||||
|
@ -17,6 +17,7 @@ This article offers a sample of basic Markdown syntax that can be used in Hugo c
|
||||
The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
|
||||
|
||||
<!-- spellchecker-disable -->
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
|
||||
# H1
|
||||
@ -56,6 +57,7 @@ The blockquote element represents content that is quoted from another source, op
|
||||
|
||||
### Blockquote with attribution
|
||||
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
|
||||
> Don't communicate by sharing memory, share memory by communicating.<br>
|
||||
@ -99,6 +101,7 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou
|
||||
|
||||
#### Code block indented with four spaces
|
||||
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
<!-- spellchecker-disable -->
|
||||
|
||||
@ -118,6 +121,7 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou
|
||||
|
||||
#### Code block with Hugo's internal highlight Shortcode
|
||||
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
<!-- spellchecker-disable -->
|
||||
<!-- prettier-ignore -->
|
||||
@ -164,6 +168,7 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou
|
||||
## Other Elements — abbr, sub, sup, kbd, mark
|
||||
|
||||
<!-- spellchecker-disable -->
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
|
||||
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
|
||||
|
Loading…
Reference in New Issue
Block a user