Update exampleSite contents

This commit is contained in:
koirand 2020-11-01 20:29:33 +09:00
parent e82a480e45
commit 15d0408c76
5 changed files with 47 additions and 62 deletions

View file

@ -41,10 +41,9 @@ The blockquote element represents content that is quoted from another source, op
#### 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
@ -58,20 +57,19 @@ Tables aren't part of the core Markdown spec, but Hugo supports supports them ou
#### 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>
@ -79,12 +77,13 @@ html
</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>
@ -94,10 +93,10 @@ html
#### 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>
@ -122,9 +121,13 @@ html
#### Nested list
* Item
1. First Sub-item
2. Second Sub-item
* Fruit
* Apple
* Orange
* Banana
* Dairy
* Milk
* Cheese
## Other Elements — abbr, sub, sup, kbd, mark