mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
Update internal code blocks for test
This commit is contained in:
parent
c4810c43c5
commit
78df2ff109
@ -49,7 +49,8 @@ The blockquote element represents content that is quoted from another source, op
|
|||||||
|
|
||||||
#### Blockquote with attribution
|
#### Blockquote with attribution
|
||||||
|
|
||||||
> Don't communicate by sharing memory, share memory by communicating.<br>
|
> Don't communicate by sharing memory, share memory by communicating.
|
||||||
|
>
|
||||||
> — <cite>Rob Pike[^1]</cite>
|
> — <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.
|
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
|
||||||
@ -71,8 +72,33 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-
|
|||||||
|
|
||||||
## Code Blocks
|
## Code Blocks
|
||||||
|
|
||||||
|
#### Inline Code
|
||||||
|
|
||||||
|
`This is Inline Code`
|
||||||
|
|
||||||
|
#### Only `pre`
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
This is pre text
|
||||||
|
</pre>
|
||||||
|
|
||||||
#### Code block with backticks
|
#### Code block with backticks
|
||||||
|
|
||||||
|
```
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Example HTML5 Document</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Test</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Code block with backticks and language specified
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
@ -115,6 +141,10 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-
|
|||||||
</html>
|
</html>
|
||||||
{{< /highlight >}}
|
{{< /highlight >}}
|
||||||
|
|
||||||
|
#### Gist
|
||||||
|
|
||||||
|
{{< gist spf13 7896402 >}}
|
||||||
|
|
||||||
## List Types
|
## List Types
|
||||||
|
|
||||||
#### Ordered List
|
#### Ordered List
|
||||||
@ -145,7 +175,7 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-
|
|||||||
|
|
||||||
H<sub>2</sub>O
|
H<sub>2</sub>O
|
||||||
|
|
||||||
X<sup>n</sup> + Y<sup>n</sup>: Z<sup>n</sup>
|
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
|
||||||
|
|
||||||
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
|
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
|
||||||
|
|
||||||
|
@ -49,7 +49,8 @@ The blockquote element represents content that is quoted from another source, op
|
|||||||
|
|
||||||
#### Blockquote with attribution
|
#### Blockquote with attribution
|
||||||
|
|
||||||
> Don't communicate by sharing memory, share memory by communicating.<br>
|
> Don't communicate by sharing memory, share memory by communicating.
|
||||||
|
>
|
||||||
> — <cite>Rob Pike[^1]</cite>
|
> — <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.
|
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
|
||||||
@ -71,8 +72,33 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-
|
|||||||
|
|
||||||
## Code Blocks
|
## Code Blocks
|
||||||
|
|
||||||
|
#### Inline Code
|
||||||
|
|
||||||
|
`This is Inline Code`
|
||||||
|
|
||||||
|
#### Only `pre`
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
This is pre text
|
||||||
|
</pre>
|
||||||
|
|
||||||
#### Code block with backticks
|
#### Code block with backticks
|
||||||
|
|
||||||
|
```
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Example HTML5 Document</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Test</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Code block with backticks and language specified
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
@ -115,6 +141,10 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-
|
|||||||
</html>
|
</html>
|
||||||
{{< /highlight >}}
|
{{< /highlight >}}
|
||||||
|
|
||||||
|
#### Gist
|
||||||
|
|
||||||
|
{{< gist spf13 7896402 >}}
|
||||||
|
|
||||||
## List Types
|
## List Types
|
||||||
|
|
||||||
#### Ordered List
|
#### Ordered List
|
||||||
|
@ -71,8 +71,33 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-
|
|||||||
|
|
||||||
## Code Blocks
|
## Code Blocks
|
||||||
|
|
||||||
|
#### Inline Code
|
||||||
|
|
||||||
|
`This is Inline Code`
|
||||||
|
|
||||||
|
#### Only `pre`
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
This is pre text
|
||||||
|
</pre>
|
||||||
|
|
||||||
#### Code block with backticks
|
#### Code block with backticks
|
||||||
|
|
||||||
|
```
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>Example HTML5 Document</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Test</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Code block with backticks and language specified
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
Loading…
Reference in New Issue
Block a user