Home MD Basic Syntax
Post
Cancel

MD Basic Syntax

Markdown Syntax

Markdown (MD) is a lightweight markup language commonly used for formatting text. It is widely used for creating documents, README files, and web content. Markdown uses simple syntax to indicate formatting elements. Here are some commonly used Markdown syntax elements

Headings

Headings are created by adding one to six hash (#) symbols at the beginning of a line, with one hash indicating the highest level of heading and six hashes indicating the lowest level of heading

1
2
3
4
# Heading 1
## Heading 2
### Heading 3

Emphasis

To emphasize text, you can use asterisks (*) or underscores (_).

1
2
3
4
5
*Italic text*
_Italic text_

**Bold text**
__Bold text__

Lists

You can create ordered (numbered) and unordered (bullet) lists.

1
2
3
4
5
6
7
8
9
Unordered list:
- Item 1
- Item 2
- Item 3

Ordered list:
1. First item
2. Second item
3. Third item

You can create clickable links using square brackets for the link text and parentheses for the URL.

1
[Visit OpenAI](https://www.openai.com)

Images

To include images, use an exclamation mark followed by square brackets for the alt text and parentheses for the image URL.

1
![Alt Text](https://example.com/image.jpg)

Code

To include inline code or code blocks, surround the code with backticks (`) for inline code or three backticks for code blocks. You can also specify the language for syntax highlighting in code blocks

1
2
3
4
5
6
7
`inline code`

    ```python
        def hello_world():
        print("Hello, world!")
    ```    

This post is licensed under CC BY 4.0 by the author.