From be3218290dc63ba251bfd2fe4d4dccb2122f4bbe Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Mon, 21 Feb 2022 18:13:35 +0000
Subject: [PATCH] feat: refactor CSS to SCSS 

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