기억은 짧고 기록은 길다
Markdown(마크다운)에서 특수문자 사용하기 본문
Intro
README.md 파일 이나 블로그의 글을 쓸때 유용하게 쓰이는 Markdown!!
특수문자의 HTML Number를 통해 특수문자를 쓰려는데 예약어 지정 때문에 답답한 상황을 해결해봅시다!!
물론 특수문자 앞에 \만 붙여도 그대로 사용가능합니다!!
Solution
Symbol | HTML Number | HTML Name | Description |
---|---|---|---|
! | ! | exclamation point | |
" | " | " | double quotes |
# | # | number sign | |
$ | $ | dollar sign | |
% | % | percent sign | |
& | & | & | ampersand |
' | ' | single quote | |
( | ( | opening parenthesis | |
) | ) | closing parenthesis | |
* | * | asterisk | |
+ | + | plus sign | |
, | , | comma | |
- | - | minus sign - hyphen | |
. | . | period | |
/ | / | slash | |
: | : | colon | |
; | ; | semicolon | |
< | < | < | less than sign |
= | = | equal sign | |
> | > | > | greater than sign |
? | ? | question mark | |
@ | @ | at symbol | |
[ | [ | opening bracket | |
\ | \ | back slash | |
] | ] | closing bracket | |
^ | ^ | caret - circumflex | |
_ | _ | underscore | |
` | ` | grave accent | |
{ | { | opening brace | |
| | |||
} | } | closing brace | |
~ | ~ | equivalency sign - tilde | |
– | – | en dash |
출처
'HoneyTips' 카테고리의 다른 글
AJAX FORM 데이터 전송 (1) | 2024.02.15 |
---|---|
[Git] Support for password authentication was removed Error 해결하기 (0) | 2021.08.14 |
Comments