diff options
-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) |