Markdown Basic Syntax Guide

Markdown is a syntax that allows you to easily express the structure of your writing without complex word processors. The Mikihands editor also primarily uses Markdown for content.

1. Headings

When organizing the structure of your writing, it's good to divide headings into hierarchical sizes. In the Mikihands editor, we usually recommend using the following three: In the Mikihands Editor, the use of # is not applied for Search Engine Optimization (SEO), so please start from ##.

  • ## : Large section title
  • ### : Subheading below that
  • #### : Smaller subheading

The rendered result is as follows.

Large Title

Medium Title

Small Title

2. Paragraphs and Line Breaks

Paragraphs are separated by one or more blank lines.

If you want to add a line break within the same paragraph,
add two spaces at the end of the sentence or use a new line appropriately.

3. Emphasis

Emphasis is expressed as follows.

*Italic*  
**Bold**  
***Bold and Italic***  

Result:

Italic
Bold
Bold and Italic


4. Lists

Unordered List

Use - or *.

- Apple  
- Banana  
- Orange  
  • Apple
  • Banana
  • Orange

Ordered List

1. First  
2. Second  
3. Third  
  1. First
  2. Second
  3. Third
[Go to Mikihands Main Platform](https://mikihands.com)

Example: Go to Mikihands Main Platform

6. Images

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

When an image is uploaded and inserted into the body, it will appear in Markdown format.

7. Blockquotes

> You can quote important sentences.  

You can quote important sentences.

8. Inline Code and Code Blocks

Inline code uses a single backtick.

`print("hello")`

Example: print("hello")

Code blocks use three backticks.

```python
def greet(name):
    return f"Hello, {name}"
```

Example:

def greet(name):
    return f"Hello, {name}"

9. Tables

| Feature | Description |  
|---|---|  
| Title | Creates document structure |  
| List | Organizes items |  
| Link | Connects to other pages |  
Feature Description
Title Creates document structure
List Organizes items
Link Connects to other pages

10. Horizontal Rules

You can create a separator by using three or more hyphens, as shown below.

---

Conclusion

Markdown is a great tool that helps you start writing quickly. Initially, learning just a few core syntax rules is enough, and as you get familiar, you can structure your documents much more naturally.