From a0fe4fd2a32a4c29b310b9f137e3d5962e76eabf Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 13 Jul 2020 22:11:38 +0200 Subject: [PATCH] add markdown samples --- .dictionary | 6 + exampleSite/config.yml | 2 +- exampleSite/content/posts/emojies.md | 42 ++++++ exampleSite/content/posts/markdown.md | 169 ++++++++++++++++++++++++ exampleSite/content/posts/post-1.md | 1 - exampleSite/content/posts/post-short.md | 4 +- layouts/shortcodes/emojify.html | 1 + src/sass/_base.scss | 6 +- src/sass/_markdown.scss | 36 ++--- 9 files changed, 233 insertions(+), 34 deletions(-) create mode 100644 exampleSite/content/posts/emojies.md create mode 100644 exampleSite/content/posts/markdown.md create mode 100644 layouts/shortcodes/emojify.html diff --git a/.dictionary b/.dictionary index 43e7bb7..117fbd1 100644 --- a/.dictionary +++ b/.dictionary @@ -2,3 +2,9 @@ hugo-book Kaussow DevOps +glyphs +Gopherfest +[B|b]lockquote[s]* +backticks +Shortcode[s]* +emojify diff --git a/exampleSite/config.yml b/exampleSite/config.yml index 7fff36a..99bdfb5 100644 --- a/exampleSite/config.yml +++ b/exampleSite/config.yml @@ -5,7 +5,7 @@ theme: hugo-geekblog pygmentsUseClasses: true pygmentsCodeFences: true -paginate: 3 +paginate: 5 # Needed for mermaid/katex shortcodes markup: diff --git a/exampleSite/content/posts/emojies.md b/exampleSite/content/posts/emojies.md new file mode 100644 index 0000000..f0848a0 --- /dev/null +++ b/exampleSite/content/posts/emojies.md @@ -0,0 +1,42 @@ +--- +title: "Emoji Support" +date: 2020-07-13T19:00:00+02:00 +authors: + - john-doe +tags: + - Documentation +--- + +Emoji can be enabled in a Hugo project in a number of ways. + + + +The [emojify](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes). + +To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files: + + + +

+{{< emojify ":see_no_evil:" >}} :see_no_evil: +{{< emojify ":hear_no_evil:" >}} :hear_no_evil: +{{< emojify ":speak_no_evil:" >}} :speak_no_evil: +

+ + + +The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes. + +{{< hint info >}} +**Info**\ +The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack. +{{< /hint >}} + + +**Example:** +{{< highlight html "linenos=table" >}} +.emoji { + font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols; +} +{{< /highlight >}} + diff --git a/exampleSite/content/posts/markdown.md b/exampleSite/content/posts/markdown.md new file mode 100644 index 0000000..e310220 --- /dev/null +++ b/exampleSite/content/posts/markdown.md @@ -0,0 +1,169 @@ +--- +title: "Markdown syntax" +date: 2020-07-13T20:00:00+02:00 +authors: + - john-doe +tags: + - Documentation +--- + +This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. + + + +## Headings + +The following HTML `

`—`

` elements represent six levels of section headings. `

` is the highest section level while `

` is the lowest. + + + +# H1 + +## H2 + +### H3 + +#### H4 + +##### H5 + +###### H6 + + +## Paragraph + +Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat. + +Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat. + + +## Blockquotes + +The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations. + +### Blockquote without attribution + + +> Tiam, ad mint andaepu dandae nostion secatur sequo quae. +> **Note** that you can use _Markdown syntax_ within a blockquote. + + +### Blockquote with attribution + + +> Don't communicate by sharing memory, share memory by communicating.
+> — Rob Pike[^1] +> + +[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015. + +## Tables + +Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box. + +| Name | Age | +| ----- | --- | +| Bob | 27 | +| Alice | 23 | + +### Inline Markdown within tables + +| Italics | Bold | Code | +| --------- | -------- | ------ | +| _italics_ | **bold** | `code` | + +## Code Blocks + +### Code block with backticks + +```html + + + + + Example HTML5 Document + + +

Test

+ + +``` + +#### Code block indented with four spaces + + + + + + + + Example HTML5 Document + + +

Test

+ + + + + +#### Code block with Hugo's internal highlight Shortcode + + + + +{{< highlight html "linenos=table" >}} + + + + + + Example HTML5 Document + + +

Test

+ + +{{< /highlight >}} + + + + +## List Types + +### Ordered List + +1. First item +2. Second item +3. Third item + +### Unordered List + +- List item +- Another item +- And another item + +### Nested list + +- Fruit + - Apple + - Orange + - Banana +- Dairy + - Milk + - Cheese + +## Other Elements — abbr, sub, sup, kbd, mark + + + +GIF is a bitmap image format. + +H2O + +Xn + Yn = Zn + +Press CTRL+ALT+Delete to end the session. + +Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. + + diff --git a/exampleSite/content/posts/post-1.md b/exampleSite/content/posts/post-1.md index 8d96d63..35b48ba 100644 --- a/exampleSite/content/posts/post-1.md +++ b/exampleSite/content/posts/post-1.md @@ -5,7 +5,6 @@ authors: - richard-roe - john-doe tags: - - Opinion - Hardware --- diff --git a/exampleSite/content/posts/post-short.md b/exampleSite/content/posts/post-short.md index 63fdc82..17c78c6 100644 --- a/exampleSite/content/posts/post-short.md +++ b/exampleSite/content/posts/post-short.md @@ -1,10 +1,10 @@ --- -title: "Very short post" +title: "Short post" date: 2020-06-22T20:00:00+02:00 authors: - john-doe tags: - - Opinion + - Development --- Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates investiture. Ornateness bland it ex enc, est yeti am bongo detract re. Pro ad prompts feud gait, quid exercise emeritus bis e. In pro quints consequent, denim fastidious copious quo ad. Stet probates in duo. diff --git a/layouts/shortcodes/emojify.html b/layouts/shortcodes/emojify.html new file mode 100644 index 0000000..b5dd353 --- /dev/null +++ b/layouts/shortcodes/emojify.html @@ -0,0 +1 @@ +{{ .Get 0 | emojify }} diff --git a/src/sass/_base.scss b/src/sass/_base.scss index 9bd06f0..7a4b394 100644 --- a/src/sass/_base.scss +++ b/src/sass/_base.scss @@ -32,7 +32,7 @@ h3, h4, h5, h6 { - font-weight: $body-font-weight; + font-weight: 600; display: flex; align-items: center; @@ -45,9 +45,7 @@ h6 { h4, h5, h6 { - > code { - font-size: 0.8rem !important; - } + font-size: 1rem !important; } a { diff --git a/src/sass/_markdown.scss b/src/sass/_markdown.scss index bd04912..926624b 100644 --- a/src/sass/_markdown.scss +++ b/src/sass/_markdown.scss @@ -14,32 +14,6 @@ } } - h1, - h2, - h3, - h4, - h5, - h6 { - font-weight: normal; - line-height: 1em; - margin-top: 1.5em; - margin-bottom: $padding-16; - } - - h4, - h5, - h6 { - font-weight: bolder; - } - - h5 { - font-size: 0.875em; - } - - h6 { - font-size: 0.75em; - } - b, optgroup, strong { @@ -123,4 +97,14 @@ width: 100%; overflow: auto; } + + mark { + background-color: rgba(255, 221, 102, 1); + } + + section.footnotes { + margin-top: 3rem; + color: $gray-600; + font-size: 0.9em; + } }