Skip to content

Latest commit

 

History

History
86 lines (64 loc) · 1.06 KB

Escaping Characters.md

File metadata and controls

86 lines (64 loc) · 1.06 KB

Introduction


  • 마크다운에서 사용되는 형식 지정 문자를 문자로 표현하기 위해 사용
  • 문자 앞에 백슬래쉬 기호 \ 를 사용한다.

Example


Markdown Render
\*\*With escaping\*\*
**Without escaping**

**With escaping** Without escaping

\#\#\# With escaping
### Without escaping

### With escaping

Without escaping


적용 가능 문자 리스트


항목 이름
\ Backslash
` Backtick, Grave
* Asterisk
_ Underline, Underscore
{ } Curly braces
[ ] Brackets
< > Angle brackets
( ) Parentheses
# Pound sign, Crosshatch, Sharp
+ Plus sign
- Minus sign, Hyphen
. Dot, Period, Full stop, Point
! Exclamation mark
| Pipe

참조 자료