Skip to content

[Documentation:System] Clarify opening and closing symbols need to match in Markdown #571

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions _docs/student/communication/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down