Guide
Welcome to my Markdown guide! This guide will help you get started with Markdown and contribute to MMS documentation projects.
Headers
You can create headers using the # symbol. The number of # symbols determines the level of the header.
Heading 1
Heading 2
Heading 3
Text Formatting
You can format text in various ways:
- Bold: Surround the text with double asterisks (
**). - Italic: Surround the text with single asterisks (
*). - ~~Strikethrough~~: Surround the text with double tildes (
~~).
Lists
You can create ordered and unordered lists:
Ordered List
- First item
- Second item
- Third item
Unordered List
- Item 1
- Item 2
- Item 3
Links
You can create links to external websites or other sections within the document:
Images
You can embed images in your Markdown file:

Code Blocks
You can display code blocks using triple backticks: