diff options
author | Aaron Ball <nullspoon@oper.io> | 2023-11-09 10:11:49 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2023-11-09 10:11:49 -0700 |
commit | 0d76858b0ec0a6902fe66aa945f3e045bac55508 (patch) | |
tree | 1cd7eb262b70b714c00b72ec3115f88e772987b2 | |
parent | 47a5eea50a0870648f0d38912c42f8fbc2581fdf (diff) | |
download | resume-0d76858b0ec0a6902fe66aa945f3e045bac55508.tar.gz resume-0d76858b0ec0a6902fe66aa945f3e045bac55508.tar.xz |
Makefile: Add resume div for easier styling
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |