presumably my resume in a programattic format... or not, since json resume didn't catch on?
1
2
3
4
5
|
#!/bin/bash
cat resume.yml |python3 -c 'import json,sys;from ruamel.yaml import YAML;yaml=YAML(); print(json.dumps(yaml.load(sys.stdin)))' > resume.fresh.json
hackmyresume convert resume.fresh.json to resume.jsr.json
hackmyresume build resume.fresh.json index.html
hackmyresume build resume.fresh.json paper.html -t node_modules/jsonresume-theme-paper
|