From 30da4738fc81489147f4553b06e420d8ca357e06 Mon Sep 17 00:00:00 2001
From: alexanderdavide <alexeble1998@gmail.com>
Date: Sun, 20 Feb 2022 13:51:24 +0000
Subject: [PATCH] refactor: enable code formatting
---
exampleSite/content/english/post/markdown-syntax.md | 32 ++++++++++++++++----------------
1 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/exampleSite/content/english/post/markdown-syntax.md b/exampleSite/content/english/post/markdown-syntax.md
index 5f3560b..637e53a 100644
--- a/exampleSite/content/english/post/markdown-syntax.md
+++ b/exampleSite/content/english/post/markdown-syntax.md
@@ -92,30 +92,30 @@
#### 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 >}}
--
Gitblit v1.10.0