diff options
Diffstat (limited to '')
-rw-r--r-- | content/resume.md | 2 | ||||
-rw-r--r-- | update_resume.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/content/resume.md b/content/resume.md index 881c863..f8252b7 100644 --- a/content/resume.md +++ b/content/resume.md @@ -37,7 +37,7 @@ If you want it as a PDF, [contact me](/about/#contact) - Made an ASP.NET API that took a feedback form and added it to the company CRM system - - Made a C## program that helped the company migrate CRM systems + - Made a C# program that helped the company migrate CRM systems - Created a Go application allowing automated translation between ANSI X12 EDI and a proprietary format diff --git a/update_resume.sh b/update_resume.sh index d0d45ca..142cd6e 100644 --- a/update_resume.sh +++ b/update_resume.sh @@ -1,7 +1,7 @@ #!/bin/sh pandoc --from latex+ascii_identifiers ./resume.tex --to commonmark+ascii_identifiers -o content/resume.md -sed -i 's/# /## /g' content/resume.md +sed -i 's/^# /## /g' content/resume.md # Make my name more prominent :) sed -i '3 s/./# &/' content/resume.md |