Verlog MarkDownの簡単な参照


1. Markdown?


寸法は、通常のテキストベースの軽量寸法言語です.
純粋なテキスト形式のドキュメントを作成します.
一般的な寸法言語に比べて、文法が簡単であることが特徴です.
-ウィキペディア

2. Title

# h1 부터
# h3도 있고
# h6까지

h 1から


h 3もあります。


h 6まで
*目次のため、引用文

3. Code Blocks

```python
print("hello world")```
print("hello world")

4. List

-, +, * bullet
  • bullet
  • 1. number
  • number
  • 5. Blockquote

    >인용문 작성
    引用文の作成

    6. Emphasis

    *italic*
    **bold**
    italic
    bold

    7. Line

    ***
    ---

    8. Link

    * inline link
    [2nchanter](https://velog.io/@2nchanter)
    
    * url link
    <https://velog.io/@2nchanter>
    
    * keyword ref.
    [2nc]:https://velog.io/@2nchanter
    [2nc] <- 키워드 입력시 링크 등장.
    2nchanter
    https://velog.io/@2nchanter
    2nc

    9. Image

    * Image + link
    [![Frostpunk](https://www.mobygames.com/images/promo/original/1549150290-4091353154.jpg)](https://store.steampowered.com/app/323190/Frostpunk/)

    10. Backslash Escapes

    * 마크다운 문법에 있는 기호를 그대로 출력 (역슬래시)
    \-
    -

    11. Table

    * |(수직선 기호)로 열 구분
    * :(콜른)으로 정렬
    * --로 th(table head)와 tr(table row) 구분
    |  |th1|th2 |  
    |--|--:|:--:|
    |H1|tr1|tr2 |
    th1th2H1tr1tr2

    12. Check Box

    * bullet 뒤에 적용
    - [ ] not checked
    - [x] checked
    not checked checked

    13. Imoji

    ctrl + cmd + Space Bar

    📚 Reference


    Verlogの使い方のチュートリアルを表示します
    Wikipedia-タグのダウンロード
    テーブル・プロパティのクリーンアップ