• Markdown help
  • Header
  • Text Style
  • Link
  • List
  • Checklist
  • Image
  • Blockquote
  • Code
  • Table
  • Short Link
  • PlantUML
  • Markdown Input
    Markdown Output
    # This is an H1
    ## This is an H2
    ### This is an H3
    
    # This is an H1 ## This is an H2 ### This is an H3
  • Markdown Input
    Markdown Output
    *This is an italic*
    **This is a bold**
    ~~This is a strike~~
    
    <red>This is Red</red>
    <green>This is Green</green>
    <blue>This is Blue</blue>
    
    *This is an italic* **This is a bold** ~~This is a strike~~
    This is Red This is Green This is Blue
  • Markdown Input
    Markdown Output
    - Red
        1. White
        2. Blue
    - Green.
    
    - Red 1. White 2. Blue - Green
  • Markdown Input
    Markdown Output
    - [ ] Todos
        - [x] To do A
        - [ ] To do B
        - [ ] To do C
                        
    • Todos
      • To do A
      • To do B
      • To do C
  • Markdown Input
    Markdown Output
    ![title](https://repo.yona.io/assets/images/ico-like-small.png "Yobi")
    
    ![title](/assets/images/ico-like-small.png "Yobi")
  • Markdown Input
    Markdown Output
    > Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    >
    > Aenean commodo ligula eget dolor.
    
    > Lorem ipsum dolor sit amet, consectetuer adipiscing elit. > > Aenean commodo ligula eget dolor.
  • Markdown Input
    Markdown Output
    `function test() {console.log("hello world");}`
    
    ```javascript
    function test() {
      console.log("hello world");
    }
    ```
    
    `function test() {console.log("hello world");}` ```javascript function test() { console.log("hello world"); } ```
  • Markdown Input
    Markdown Output
    | Default      | Align center | Align right |
    | ------------ | :----------: | ------: |
    | Carrot       | Red          | 1,000   |
    | Banana       | Yellow       | 32,000  |
    
    | Default | Align center | Align right | | ------------ | :----------: | ------: | | Carrot | Red | 1,000 | | Banana | Yellow | 32,000 | Also, you can copy & paste table from excel sheet
  • Markdown Input
    Markdown Output
    ```plantuml
    Bob -> Alice : hello
    ```
    See More Info: [PlantUML](https://plantuml.com/ko/)
    
    [PlantUML Online Server](https://plantuml.xslab.co.kr/)
    

    ![](https://plantuml.xslab.co.kr/svg/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000)

    See More Info: [PlantUML](https://plantuml.com/ko/) [PlantUML Online Server](https://plantuml.xslab.co.kr/)
Notification receivers