mirror of https://github.com/lxndrblz/anatole.git

alexanderdavide
24.34.2021 6fe4462e53ea300d3734301edba33cb1866fa777
exampleSite/content/english/post/markdown-syntax.md
@@ -17,6 +17,7 @@
+++
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 +25,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
@@ -43,7 +49,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
@@ -56,31 +62,31 @@
Tables aren't part of the core Markdown spec, but Hugo supports 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>
```
@@ -98,7 +104,9 @@
    </html>
#### Code block with Hugo's internal highlight shortcode
{{< highlight html >}}
<!doctype html>
<html lang="en">
<head>
@@ -121,19 +129,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
## Other Elements — abbr, sub, sup, kbd, mark