| | |
| | | |
| | | #### Code block indented with four spaces |
| | | |
| | | <!doctype html> |
| | | <!DOCTYPE html> |
| | | <html lang="en"> |
| | | <head> |
| | | <meta charset="utf-8"> |
| | | <title>Example HTML5 Document</title> |
| | | </head> |
| | | <body> |
| | | <p>Test</p> |
| | | </body> |
| | | <head> |
| | | <meta charset="utf-8" /> |
| | | <title>Example HTML5 Document</title> |
| | | </head> |
| | | <body> |
| | | <p>Test</p> |
| | | </body> |
| | | </html> |
| | | |
| | | #### Code block with Hugo's internal highlight shortcode |
| | | |
| | | {{< highlight html >}} |
| | | |
| | | <!doctype html> |
| | | <!DOCTYPE html> |
| | | <html lang="en"> |
| | | <head> |
| | | <meta charset="utf-8"> |
| | | <title>Example HTML5 Document</title> |
| | | </head> |
| | | <body> |
| | | <p>Test</p> |
| | | </body> |
| | | <head> |
| | | <meta charset="utf-8" /> |
| | | <title>Example HTML5 Document</title> |
| | | </head> |
| | | <body> |
| | | <p>Test</p> |
| | | </body> |
| | | </html> |
| | | {{< /highlight >}} |
| | | |