1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-03 08:38:39 +00:00
pdf2htmlEX/share/manifest
2012-09-22 22:47:44 +08:00

45 lines
579 B
Plaintext

# manifest
# by WangLu
# 2012.09.12
#
# Syntax
# The first char of each line is the command
# Empty lines are ignored
#
# # - comment
# @ - include a file from data dir
# $ - special use for pdf2htmlEX
#
# Special
# If a line contains """ only, all text until next """ will be included
"""
<!DOCTYPE html>
<!-- Created by pdf2htmlEX (http://github.com/coolwanglu/pdf2htmlEX) -->
<html>
<head>
<meta charset="utf-8">
"""
@base.css
$css
@jquery.js
@pdf2htmlEX.js
"""
<title></title>
</head>
<body>
<div id="pdf-main">
"""
$pages
"""
</div>
</body>
</html>
"""
# MANIFEST END