Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 566 Bytes

File metadata and controls

38 lines (22 loc) · 566 Bytes

How to view .md files in browser

install grip (for Debian based Linux distros):

sudo apt install python3-pip && pip3 install grip

serve:

python3 -m grip GA_Resolution.md # or other file name 

than open in browser http://localhost:6419

How to convert .md files

install pandoc:

sudo apt install pandoc texlive texlive-xetex 

to convert:

pandoc file.md -o file.pdf
# or 
pandoc file.md -o file.docx 

see also: https://pandoc.org/demos.html