1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 10:20:33 +00:00
pdf2htmlEX/share/manifest

50 lines
600 B
Plaintext
Raw Normal View History

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