From 4eca719b0b5a235d5b5bccb9c7c6c769fcfe64a4 Mon Sep 17 00:00:00 2001
From: Lucas <100660343+lulunac27a@users.noreply.github.com>
Date: Tue, 21 May 2024 04:09:03 -0500
Subject: [PATCH] docs(fix): correct a mistake in markdown guide (#394)
Fix code mistake by making sure backticks are inserted at start and end of example text
---
exampleSite/content/docs/guide/markdown.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/exampleSite/content/docs/guide/markdown.md b/exampleSite/content/docs/guide/markdown.md
index 740a3a27..667eae3f 100644
--- a/exampleSite/content/docs/guide/markdown.md
+++ b/exampleSite/content/docs/guide/markdown.md
@@ -14,7 +14,7 @@ Hugo supports [Markdown](https://en.wikipedia.org/wiki/Markdown) syntax for form
| Style | Syntax | Example | Output |
| -------- | -------- | ------ | ------ |
| Bold | `**bold text**` | `**bold text**` | **bold text** |
-| Italic | `*italicized text*` | `*italicized text* | *italicized text* |
+| Italic | `*italicized text*` | `*italicized text*` | *italicized text* |
| Strikethrough | `~~strikethrough text~~` | `~~strikethrough text~~` | ~~strikethrough text~~ |
| Subscript | `` | `This is a subscript text` | This is a subscript text |
| Superscript | `` | `This is a superscript text` | This is a superscript text |