mirror of https://github.com/luizdepra/hugo-coder.git

Luiz F. A. de Prá
13.51.2023 c3df12d0bbc2dda164df904f6a487580a82da746
exampleSite/content/posts/markdown-syntax.md
@@ -1,22 +1,24 @@
+++
authors = ["Hugo Authors"]
authors = ["Lone Coder"]
title = "Markdown Syntax Guide"
date = "2019-03-11"
date = "2023-07-13"
description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
tags = [
    "hugo",
    "markdown",
    "css",
    "html",
]
categories = [
    "themes",
    "theme demo",
    "syntax",
]
series = ["Themes Guide"]
series = ["Theme Demo"]
aliases = ["migrate-from-jekyl"]
+++
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.
<!--more-->
## Headings
@@ -24,10 +26,15 @@
The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
# H1
## H2
### H3
#### H4
##### H5
###### H6
## Paragraph
@@ -47,7 +54,7 @@
#### Blockquote without attribution
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
> **Note** that you can use *Markdown syntax* within a blockquote.
> **Note** that you can use _Markdown syntax_ within a blockquote.
#### Blockquote with attribution
@@ -58,31 +65,31 @@
Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-box.
   Name | Age
--------|------
    Bob | 27
  Alice | 23
| Name  | Age |
| ----- | --- |
| Bob   | 27  |
| Alice | 23  |
#### Inline Markdown within tables
| Italics   | Bold     | Code   |
| --------  | -------- | ------ |
| *italics* | **bold** | `code` |
| --------- | -------- | ------ |
| _italics_ | **bold** | `code` |
## Code Blocks
#### Code block with backticks
```html
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
    <head>
        <meta charset="utf-8" />
        <title>Example HTML5 Document</title>
    </head>
    <body>
        <p>Test</p>
    </body>
</html>
```
@@ -100,7 +107,9 @@
    </html>
#### Code block with Hugo's internal highlight shortcode
{{< highlight html >}}
<!doctype html>
<html lang="en">
<head>
@@ -123,19 +132,19 @@
#### Unordered List
* List item
* Another item
* And another item
-   List item
-   Another item
-   And another item
#### Nested list
* Fruit
  * Apple
  * Orange
  * Banana
* Dairy
  * Milk
  * Cheese
-   Fruit
    -   Apple
    -   Orange
    -   Banana
-   Dairy
    -   Milk
    -   Cheese
#### Foot Notes