Markdownチュートリアル

How to Get Started

How to get started with Markdown

How to Get Started with Markdown?

Step 1: Choose a Markdown Editor

Markdown itself is a plain text format, so you just need an editor that supports Markdown syntax to get started. Here are common choices:

Beginner Recommendations (Simple and Easy):

  • Typora (Cross-platform, real-time rendering, clean interface) 👉 Perfect for beginners
  • StackEdit (Online editor, no installation required) 👉 Great for temporary use or cloud collaboration
  • VS Code + Markdown plugins (Programmer's choice, powerful features)

Advanced Options (Feature-rich):

  • Obsidian (Local knowledge management powerhouse, supports bidirectional links and plugins)
  • Zettlr (Academic writing friendly, supports references)
  • Notion (Supports Markdown syntax input, integrates databases and collaboration)

Recommendation: Beginners can start with Typora or online editors (like StackEdit) to quickly experience Markdown writing and rendering effects.


Step 2: Learn Basic Syntax (5-minute quick start)

The core of Markdown lies in a few simple symbols. Below is a table comparison showing the most commonly used basic syntax to help you quickly understand and remember:

1. Headings (Use # to indicate hierarchy)

Markdown SyntaxRendered Effect
# Level 1 Heading

Level 1 Heading

## Level 2 Heading

Level 2 Heading

### Level 3 Heading

Level 3 Heading

2. Text Styling

Markdown SyntaxRendered Effect
**Bold text**Bold text
*Italic text*Italic text
~~Strikethrough~~Strikethrough

3. Lists

Markdown SyntaxRendered Effect
- Unordered item 1
- Unordered item 2
- Unordered item 1
- Unordered item 2
1. Ordered item 1
2. Ordered item 2
1. Ordered item 1
2. Ordered item 2

4. Links and Images

Markdown SyntaxRendered Effect
[Display text](https://example.com)Display textGoogle
![Image description](image URL)![Image description](image URL) → Example: Example image

🔗 More syntax can be found at: Markdown Guide (Official Guide)


Step 3: Hands-on Practice

The best way to learn is to learn while writing!

Recommended Practice Methods:

  1. Create a new .md file (like hello.md) and open it with Notepad or an editor.
  2. Follow the syntax examples in the table above and try modifying content yourself (like writing a level 1 heading, bolding a sentence, inserting a link).
  3. Use an editor with real-time preview (like Typora) to see effects while writing.
  4. Upload your Markdown file to GitHub, Notion, or export as PDF/HTML to experience its multi-platform capabilities.

Small Goal: Today, use Markdown to write a diary, take notes, or create a README.md for your project!


Step 4: Integrate into Your Workflow

Based on your needs, Markdown can be naturally integrated into different usage scenarios. Below is a comparison of common scenarios and recommended usage:

Use CaseRecommended UsageCommon Tools/Platforms
Blog WritingWrite articles in Markdown, publish via Hexo/JekyllTypora / VS Code / Hexo
Note TakingManage knowledge with note software supporting Markdown inputObsidian / Notion
Code DocumentationWrite README.md in projects, clear and professionalGitHub / GitLab / VS Code
Daily RecordingWrite diaries, plans, checklistsTypora / Obsidian
Team CollaborationUse collaboration platforms supporting MarkdownNotion / Feishu / GitHub

Summary: How to Get Started with Markdown?

StepWhat to DoTool/Method Recommendation
1Choose an editorTypora / VS Code / Obsidian
2Learn basic syntax (quick reference through tables)Syntax comparison tables in this article
3Write a document by hand (like notes/diary/instructions)Create your own .md file and practice
4Apply to real scenariosBlog, project docs, knowledge management, collaboration

🌟 Getting started with Markdown is very simple, but its application scenarios are very broad. Starting today, use a table and a # symbol to begin your efficient writing journey!