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

Alexander Bilz
30.42.2020 90c5bfc8eef5d22232eebff4026da75a6b6d80c8
exampleSite/content/post/markdown-syntax.md
@@ -7,7 +7,6 @@
    "markdown",
    "css",
    "html",
    "themes",
]
categories = [
    "themes",
@@ -48,10 +47,9 @@
#### Blockquote with attribution
> Don't communicate by sharing memory, share memory by communicating.</p>
> Don't communicate by sharing memory, share memory by communicating.<br>
> — <cite>Rob Pike[^1]</cite>
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
## Tables
@@ -65,20 +63,19 @@
#### Inline Markdown within tables
| Inline&nbsp;&nbsp;&nbsp;     | Markdown&nbsp;&nbsp;&nbsp;  | In&nbsp;&nbsp;&nbsp;                | Table      |
| ---------- | --------- | ----------------- | ---------- |
| *italics*  | **bold**  | ~~strikethrough~~&nbsp;&nbsp;&nbsp; | `code`     |
| Italics   | Bold     | Code   |
| --------  | -------- | ------ |
| *italics* | **bold** | `code` |
## Code Blocks
#### Code block with backticks
```
html
<!DOCTYPE html>
```html
<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>
@@ -86,12 +83,13 @@
</body>
</html>
```
#### Code block indented with four spaces
    <!DOCTYPE html>
    <!doctype html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta charset="utf-8">
      <title>Example HTML5 Document</title>
    </head>
    <body>
@@ -101,10 +99,10 @@
#### Code block with Hugo's internal highlight shortcode
{{< highlight html >}}
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>