Language/Markdown

[Markdown] 마크다운 깃허브 스타일로 HTML 변환하기

Young-Cow 2022. 1. 14. 19:50

Markdown 을 Github-style로 변환하는 방법

1. Installing pandoc

아래 링크를 참고하여 pandoc 설치

https://github.com/jgm/pandoc/blob/master/INSTALL.md

다운로드

2. pandoc를 이용해서 Markdown 변환

2-1. Github Style CSS 다운로드

https://gist.github.com/dashed/6714393 여기서 github style sheet 다운받기

2-2. 설치한 pandoc를 이용하여 파일 변환하기

내가 사용한 예시

pandoc README.md -f markdown -t html -s --css=github-pandoc.css -o README.html

각 옵션들의 의미

  • 현재 디렉토리에 있는 README.md 문서는
  • -f markdown : 마크다운 형식의 문서인데
  • -t html : 이걸 html 형식으로 변환하여 저장할 것이고
  • -s --css=github-pandoc.css : 현재 디렉토리에 있는 css파일인 github-pandoc.css 파일을 입력받아서
  • -o README.html : README.html 이라는 파일로 출력할 것이다.

아래 링크들을 참고하였음

728x90
반응형