From 1b56829b6f3dcd4ce0a63e7382e26b2a840917e9 Mon Sep 17 00:00:00 2001 From: PythonCoderAS <13932583+PythonCoderAS@users.noreply.github.com> Date: Wed, 31 Jan 2024 10:39:23 -0500 Subject: [PATCH] [Documentation:System] Clarify opening and closing symbols need to match in Markdown (#571) Markdown allows using two different sets of symbols for the same action (bold, italic, etc.) but needs the starting symbol and the closing symbol to be the same symbol, so no mix-and-matching is allowed. --- _docs/student/communication/markdown.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/_docs/student/communication/markdown.md b/_docs/student/communication/markdown.md index a132ef42..9b7f7ad1 100644 --- a/_docs/student/communication/markdown.md +++ b/_docs/student/communication/markdown.md @@ -42,15 +42,18 @@ using markdown. * **Italics** - Adding `_` (one underscore) or `*` (one asterisk) before and after text will _italicize_ that text. + Adding `_` (one underscore) or `*` (one asterisk) before and after text will _italicize_ that text. Opening + and closing symbols need to match. * **Bold** - Adding `__` (two underscores) `**` (two asterisks) before and after text will make that text __bold__. + Adding `__` (two underscores) `**` (two asterisks) before and after text will make that text __bold__. Opening + and closing symbols need to match. * **Bold and Italics** Adding `___` (three underscores) `***` (three asterisks) before and after text will make that text ___bold and italic___. + Opening and closing symbols need to match. * **Inline Code**