1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 17:48:38 +00:00
pdf2htmlEX/share/manifest
2012-09-18 15:27:17 +08:00

50 lines
600 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
@hide_pages.js
"""
<title></title>
</head>
<body>
<div id="pdf-main">
"""
$pages
"""
</div>
"""
@scroll.js
"""
</body>
</html>
"""
# MANIFEST END