git github 주요 기능 Current: 깃헙 마크다운(github markdown) 파일을 로컬에서 볼수있는 grip 패키지 깃헙 마크다운(github markdown) 파일을 로컬에서 볼수있는 grip 패키지 grip 은 github markdown 파일(README.md 등) 을 로컬에서 렌더링 해주는 패키지로 python 이 필요함.설치 pip install grip BASH Windows 에 설치 실패시https://github.com/pallets/markupsafe/issues/67 grip 이 사용하는 markupsafe 패키지가 윈도우에서 설치 실패시 조치 방법 git clone git@github.com:pallets/markupsafe.git markupsafe cd markupsafe python setup.py bdist_wheel BASH 컴파일이 끝나면 수동으로 설치 pip install dist/MarkupSafe-1.0-cp36-cp36m-win_amd64.whl BASH 사용grip 명령을 사용하면 localhost 의 6419 에 내장 웹 서버를 구동하므로 브라우저로 http://localhost:6419/에 연결하면 html 로 변환된 마크다운 문서를 볼수 있음. $ grip * Running on http://localhost:6419/ BASH ×