3월 21, 2016

superscript (윗첨자), subscript (아랫첨자) 삽입하는 방법. (markdown/html)

순수 markdown 문법

  • superscript: ^(text)^
  • subscript: ~(text)~

만약 text 사이에 공백이 있다면 공백에 \ (escape) 처리를 해줘야 함. ex) ^hello\ world!^


html tag 사용

markdown에서는 위의 문법을 지원하지 않는 경우가 있음. github 에서는 위의 문법을 지원하지 않는데, 이런 경우엔 html tag를 사용. markdown 뿐 아니라 html에서도 사용 가능.

  • superscript: <sup>superscript</sup>
  • subscript: <sub>subscript</sub>

댓글 없음:

댓글 쓰기