pdf2htmlEX/share/manifest

62 lines
868 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
"""
<!DOCTYPE html>
2012-09-13 06:30:03 +00:00
<!-- Created by pdf2htmlEX (http://github.com/coolwanglu/pdf2htmlEX) -->
2012-09-12 15:26:14 +00:00
<html>
<head>
<meta charset="utf-8">
2012-10-05 03:47:57 +00:00
<meta name="generator" content="pdf2htmlEX"/>
2012-09-12 15:26:14 +00:00
"""
2013-01-28 10:16:01 +00:00
# base CSS styles
2012-09-12 15:26:14 +00:00
@base.css
2013-01-28 10:16:01 +00:00
# PDF specific CSS styles
2012-09-12 15:26:14 +00:00
$css
2013-01-28 10:16:01 +00:00
# necessary Javascript codes
2012-09-12 15:26:14 +00:00
@jquery.js
2012-09-22 14:47:44 +00:00
@pdf2htmlEX.js
2012-09-12 15:26:14 +00:00
"""
2012-09-25 14:24:36 +00:00
<script type="text/javascript">
2013-01-28 14:11:42 +00:00
new pdf2htmlEX.Viewer('pdf-main', 'pdf-outline');
2012-09-25 14:24:36 +00:00
</script>
2012-09-12 15:26:14 +00:00
<title></title>
</head>
<body>
<div id="pdf-outline" class="opened">
2013-01-28 10:46:44 +00:00
"""
2013-01-28 12:00:20 +00:00
$outline
2013-01-28 10:46:44 +00:00
"""
</div>
2012-09-12 15:26:14 +00:00
<div id="pdf-main">
"""
2013-01-28 10:16:01 +00:00
# PDF pages
2012-09-12 15:26:14 +00:00
$pages
"""
</div>
</body>
</html>
"""
# MANIFEST END