
Have you been encountering the word Markdown frequently these days?
Markdown is a lightweight markup language that can be easily used on the web, helping to express content simply and neatly. By utilizing it, text formatting can be easily formed, making it widely used, especially useful for blogging or document writing.
Definition of Markdown
Markdown was originally created by John Gruber and is designed to write HTML fonts in a way that is easy for the human brain to read and write. This language is primarily used in text documents that can be used on the web and is supported across various platforms. It combines plain text and HTML code, and because it can format with just a few symbols, it is very popular.
Examples of Markdown Application
Markdown is very easy to use; for example, creating lists or emphasizing text is simple.
Here are a few basic examples.
1. Creating Titles
You can create titles by placing the `#` symbol in front of the text. The number of `#` changes the level of the title.
“`markdown
# Title 1 (Top-level title)
## Title 2
### Title 3
“`
2. Creating Lists
You can easily create lists using numbered lists and bullet lists.
“`markdown
– Bullet 1
– Bullet 2
– Sub-bullet
1. Number 1
2. Number 2
“`
3. Emphasizing Text
It is also easy to emphasize text.
“`markdown
This is **emphasized text**.
“`
4. Links and Images
Images and links can be inserted very easily.
“`markdown
Click this link to go to [OpenAI](https://www.openai.com).

“`
The Necessity of Markdown
Markdown is very useful for many people.
For example, bloggers can use Markdown to make their writings visually neat. Students find it useful for organizing notes and sharing them in an organized format. Additionally, developers often utilize Markdown to write code documentation.
By using Markdown, you can achieve more attractive results no matter what you write. The text is not complicated, making it easy to read.