mirror of https://github.com/lxndrblz/anatole.git

alexanderdavide
20.51.2022 30da4738fc81489147f4553b06e420d8ca357e06
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 >}}