diff options
author | Matt Strapp <matt@mattstrapp.net> | 2022-10-17 08:48:41 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2022-10-17 08:48:41 -0500 |
commit | 3df5979ceefe9d60c841c7f90fda0b5f5dcf81fd (patch) | |
tree | 4ce9d1c3f5e69030b7a3a8fe2ffab2188849ce2c | |
parent | update resume (diff) | |
download | website-3df5979ceefe9d60c841c7f90fda0b5f5dcf81fd.tar website-3df5979ceefe9d60c841c7f90fda0b5f5dcf81fd.tar.gz website-3df5979ceefe9d60c841c7f90fda0b5f5dcf81fd.tar.bz2 website-3df5979ceefe9d60c841c7f90fda0b5f5dcf81fd.tar.lz website-3df5979ceefe9d60c841c7f90fda0b5f5dcf81fd.tar.xz website-3df5979ceefe9d60c841c7f90fda0b5f5dcf81fd.tar.zst website-3df5979ceefe9d60c841c7f90fda0b5f5dcf81fd.zip |
correct regex
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-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 |