[Hexo Blog] Markdown 플러그인 설치

마크다운은 간단한 인라인 코드를 작성할 때 백틱을 이용한다.

1
`(넣을 내용)`

근데 잘 쓰고 있던 중 어떤 md 파일은 먹히는데 새로 작성하는 파일에선 되지 않는 현상을 발견했다.


구글링을 통해 삽질을 해본 결과 기본 hexo는 원래 해당 태그를 지원하지 않는다는 사실을 어느 블로그를 통해 알게 되었고 당장 hexo 용 마크다운 플러그인을 설치했다.

참조 : https://d2fault.github.io/2018/07/03/20180703-smart-posting/

Install

https://github.com/CHENXCHEN/hexo-renderer-markdown-it-plus

hexo가 설치 된 루트 폴더 (블로그 theme 상단 경로)에 아래 npm 명령을 입력한다.

1
2
npm un hexo-renderer-marked --save
npm i hexo-renderer-markdown-it-plus --save

_config.yml 설정

1
2
3
4
5
6
7
8
9
10
11
#Markdown 플러그인 설치
markdown_it_plus:
highlight: true
html: true
xhtmlOut: true
breaks: true
langPrefix:
linkify: true
typographer:
quotes: “”‘’
pre_class: highlight

_config.yml 파일 최하단에 다음 구문을 넣어 설정한다.

Author

MoonDoni

Posted on

2020-01-28

Updated on

2020-02-24

Licensed under

댓글