소스 검색

[enh] readme: add commands to install dependencies on Debian and Fedora.

Moul 7 년 전
부모
커밋
496a014f9b
1개의 변경된 파일18개의 추가작업 그리고 7개의 파일을 삭제
  1. 18 7
      README.md

+ 18 - 7
README.md

@@ -1,14 +1,25 @@
 The Markdown Resume
 ===================
 
-Instructions:
+### Instructions
+```bash
+git clone https://github.com/mszep/pandoc_resume
+cd pandoc_resume
+vim resume.md   # insert your own resume info
+make
+```
 
-    git clone https://github.com/mszep/pandoc_resume
-    cd pandoc_resume
-    vim resume.md   #insert your own resume info
-    make
-
-Requirements:
+### Requirements
 
  * ConTeXt
  * pandoc
+
+#### Debian
+```bash
+sudo apt install pandoc context
+```
+
+#### Fedora
+```bash
+sudo dnf install pandoc texlive-collection-context
+```