mirror of
https://github.com/Wonderfall/hugo-WonderMod.git
synced 2025-08-15 10:05:43 -04:00
Update internal code blocks for test
This commit is contained in:
parent
c4810c43c5
commit
78df2ff109
3 changed files with 88 additions and 3 deletions
|
@ -71,8 +71,33 @@ Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-
|
|||
|
||||
## Code Blocks
|
||||
|
||||
#### Inline Code
|
||||
|
||||
`This is Inline Code`
|
||||
|
||||
#### Only `pre`
|
||||
|
||||
<pre>
|
||||
This is pre text
|
||||
</pre>
|
||||
|
||||
#### 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
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue