Mark Down 사용법

  • Markdown Tutorial:

  • Table Gerator:

1. Character Formatting

Style Syntax
Strong Surround text with two asterisks (**) or two underscore characters (__)
Emphasis Surround text with single asterisks (*)or underscore characters (_)
Strikethrough Surround text with two tildes (~~)
Code Surround text with single backquotes ( `` )
Combinations Surround text with single underscore characters or two tildes inside two asterisks. Surround text with three asterisks to apply strong emphasis.

1. Header

  • Big Header / Small Header / Header by #
    Big Header
    =========
    Small Header
    ------------
    # Header H1 
    ## Header H2
    ### Header H3
    #### Header H4
    ##### Header H5
    ###### Header H6
    

Big Header

Small Header

Header H1

Header H2

Header H3

Header H4

Header H5
Header H6

2. Thematic Breaks

  • ___, ---, *** 를 사용하면 horizontal line이 그려진다.
This is first line
___
This is second line
--- 
This is third line
***
This is fourth line

3. Block Quotes

> This is first quote
>  >  This is second quote
>  >  > This is third quote

> This is first quote > > This is second quote > > > This is third quote

4. Code Blocks

  • 코드 block을 ``` 로 묶는다.
    “`
    @Service public class PolicyHandler{ public void created_mileage(@Payload ReservationCreated reservationCreated){ Mileage.accumulateMileage(event); }
    }
    “`
@Service
public class PolicyHandler{
    public void created_mileage(@Payload ReservationCreated reservationCreated){
        Mileage.accumulateMileage(event);
    }  
}  

5. Lists

  • 순서가 없는 List 에는 -, *, + 중 하나를 쓰면 된다.
List ordered / unodered:
1. Fix usability problem
2. Clean up the page
   * Make the headings bigger
2. Push my changes
3. Create code review
   * Describe my changes
   * Assign reviewers
     * Ask for feedback

List ordered / unodered:

  1. Fix usability problem
  2. Clean up the page
    • Make the headings bigger
  3. Push my changes
  4. Create code review
    • Describe my changes
    • Assign reviewers
      • Ask for feedback

6. Tables

  • :---, :---:, ---: 을 활용하여 value 값을 정렬 할 수 있다.
| Month    | Assignee | Backup |
| -------- | -------- | ------ |
| January  | Dave     | Steve  |
| February | Gregg    | Karen  |
| March    | Diane    | Jorge  |

Month | Assignee | Backup
---:|:---:| ---
**January** | Dave | _Steve_
**February** | Gregg | _Karen_
**March** | Diane | _Jorge_
Month Assignee Backup
January Dave Steve
February Gregg Karen
March Diane Jorge
Month Assignee Backup
January Dave Steve
February Gregg Karen
March Diane Jorge

7. Links

[inline link](https://www.jetbrains.com)
[inline link with tooltip](https://www.jetbrains.com "JetBrains: Development Tools for Professionals and Teams")
[reference link][1]

[1]: https://www.jetbrains.com

inline link
inline link with tooltip
reference link

8. Images

Inline:
![Markdown logo](https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Markdown-mark.svg/208px-Markdown-mark.svg.png "Markdown")

Reference style:
![Markdown logo][logo]

[logo]: https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Markdown-mark.svg/208px-Markdown-mark.svg.png "Markdown"

[![YouTrack — Maintain Order In A World of Chaos](https://img.youtube.com/vi/rhAunB7UQFQ/sddefault.jpg)](https://www.youtube.com/watch?v=rhAunB7UQFQ)

Inline: Markdown logo

Reference style: Markdown logo

YouTrack — Maintain Order In A World of Chaos

9. Backslash Escapes

Here are a few examples of backslash escapes:

\*not emphasis*
\`not an inline code span`
1\. not an ordered list
\* not an unordered list
\# not a heading

\This is not a backslash escape - the escaped character is not a markup character.

Here are a few examples of backslash escapes:

*not emphasis*
`not an inline code span`
1. not an ordered list
* not an unordered list
# not a heading

\This is not a backslash escape – the escaped character is not a markup character.