Velog 마크다운

9905 단어 velogMarkdownMarkdown

1. 구분선

Horizontal Rules



마크다운:

* * *
***
- - -
---




2. 인용구

Blockquotes

"There is nothing either good or bad, but thinking makes it so."

-Hamlet in "Hamlet"-


마크다운:

> "There is nothing either good or bad, but thinking makes it so."
>
> -Hamlet in "Hamlet"- 




3. 링크

Links

Moseoh.log 일반 링크

Moseoh.log 일반 링크 + 설명


마크다운:

[Moseoh Blog](https://azqazq195.github.io)  일반 링크

[Moseoh Blog](https://azqazq195.github.io/ "Moseoh 개인 블로그") 일반 링크 + 설명 




4. 강조

Emphasis

Should Old Acquaintance be forgot
Should Old Acquaintance be forgot
Should Old Acquaintance be forgot
Should Old Acquaintance be forgot

This is a text with light and strong emphasis.
This is emphasized as well.
This does not work.
This does not work either.


마크다운:

*Should Old Acquaintance be forgot*
_Should Old Acquaintance be forgot_
**Should Old Acquaintance be forgot**
__Should Old Acquaintance be forgot__

This is a ***text with light and strong emphasis***.
This **is _emphasized_ as well**.
This *does _not_ work*.
This **does __not__ work either**.




5. 헤더

Headers


마크다운:

# H1. TeXt Heading
## H2. TeXt Heading
### H3. TeXt Heading
#### H4. TeXt Heading
##### H5. TeXt Heading
###### H6. TeXt Heading

6. 리스트

Lists

Unordered lsit

  • Aenean
  • vel
    • libero
    • eget
  • ante

마크다운:

* Aenean
* vel
    * libero
    * eget
* ante

Ordered list

  1. Aenean
  2. vel
  3. libero
  4. eget
  5. ante

마크다운:

    1. Aenean
    2. vel
    3. libero
    4. eget
    5. ante

Task list

체크박스 체크 표시
미리보기에선 적용되는데 게시 후에는 적용이 안되는 것 같아요

  • a bigger project
    • first subtask
    • follow up subtask
    • final subtask
  • a separate task

마크다운:

- [ ] a bigger project
  - [x] first subtask
  - [x] follow up subtask
  - [ ] final subtask
- [ ] a separate task




7. 테이블

Tables

Align

Default alignedLeft alignedCenter alignedRight aligned
First body partSecond cellThird cellfourth cell
Second linefoostrongbaz
Third linequuxbazbar

마크다운:

| Default aligned |Left aligned| Center aligned  | Right aligned  |
|-----------------|:-----------|:---------------:|---------------:|
| First body part |Second cell | Third cell      | fourth cell    |
| Second line     |foo         | **strong**      | baz            |
| Third line      |quux        | baz             | bar            |

8. 코드 블럭 code

Code Blocks

Code Spans

Here is a literal ` backtick.
And here is `some` text (note the two spaces so that one is left
in the output!).


마크다운:

Here is a literal `` ` `` backtick.
And here is ``  `some`  `` text (note the two spaces so that one is left
in the output!).

Standard Code Blocks

Here comes some code
This text belongs to the same code block.

마크다운:

```
Here comes some code
This text belongs to the same code block.
```

Language of Code Blocks

def what?
  42
end

마크다운:

``` ruby
def what?
  42
end
```

9. 글자색, 굵기

내용
내용

<span style="color:#D46A6A" ><strong>내용</strong></span>
<span style="color:#AA3939; background:#FFAAAA" ><strong>내용</strong></span>
글자 사이즈
글자 굵기
글자 기울이기
줄 바꿈

<span style="font-size: 10px" >
  글자 사이즈</br>
</span>
 
<strong>글자 굵기</strong></br>
<i>글자 기울이기</i></br>
줄 바꿈</br>
</br>

html 문법도 적용 됩니다.

좋은 웹페이지 즐겨찾기