Update internal code blocks for test

This commit is contained in:
Aditya Telange
2022-03-12 20:03:49 +05:30
committed by GitHub
parent c4810c43c5
commit 78df2ff109
3 changed files with 88 additions and 3 deletions

View File

@ -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">