This change to the resume schema allows you to list multiple roles per company in your work experience.
		
			
				
	
	
		
			28 lines
		
	
	
		
			388 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			388 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# show all recipes
 | 
						|
default:
 | 
						|
  just --list --unsorted
 | 
						|
 | 
						|
# format toml
 | 
						|
fmt:
 | 
						|
  taplo fmt example.toml
 | 
						|
 | 
						|
# validate toml
 | 
						|
validate:
 | 
						|
  taplo lint example.toml
 | 
						|
 | 
						|
# create pdf
 | 
						|
pdf:
 | 
						|
  #!/usr/bin/env sh
 | 
						|
  ed<<EOF
 | 
						|
  i
 | 
						|
  module.exports =
 | 
						|
  .
 | 
						|
  r !taplo get -f example.toml -o json
 | 
						|
  -1s/$/,
 | 
						|
  .r lambdas.js
 | 
						|
  w view.js
 | 
						|
  q
 | 
						|
  EOF
 | 
						|
  mustache view.js resume.template \
 | 
						|
  | groff -ms -t -Tpdf > example.pdf
 |