summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@oper.io>2023-11-09 10:11:49 -0700
committerAaron Ball <nullspoon@oper.io>2023-11-09 10:11:49 -0700
commit0d76858b0ec0a6902fe66aa945f3e045bac55508 (patch)
tree1cd7eb262b70b714c00b72ec3115f88e772987b2
parent47a5eea50a0870648f0d38912c42f8fbc2581fdf (diff)
downloadresume-0d76858b0ec0a6902fe66aa945f3e045bac55508.tar.gz
resume-0d76858b0ec0a6902fe66aa945f3e045bac55508.tar.xz
Makefile: Add resume div for easier styling
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d1ed3bc..fe0df63 100644
--- a/Makefile
+++ b/Makefile
@@ -10,9 +10,9 @@ md-html5: setup
cp res/header.html $(html)
cat res/style-header.css >> $(html)
cat res/style-markdown.css >> $(html)
- printf '</style>\n</head>\n<body>\n' >> $(html)
- cmark --unsafe resume.md >> $(html)
- printf '</body>\n</html>\n' >> $(html)
+ printf '</style>\n</head>\n<body><div id="resume">\n' >> $(html)
+ cmark --unsafe resume.md >> $(html)
+ printf '</div></body>\n</html>\n' >> $(html)
rst-html5:
rst2html5.py --stylesheet=$(style) resume.rst $(html)

Generated by cgit