mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
62 lines
868 B
Plaintext
62 lines
868 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">
|
|
<meta name="generator" content="pdf2htmlEX"/>
|
|
"""
|
|
# base CSS styles
|
|
@base.css
|
|
|
|
# PDF specific CSS styles
|
|
$css
|
|
|
|
# necessary Javascript codes
|
|
@jquery.js
|
|
@pdf2htmlEX.js
|
|
|
|
"""
|
|
<script type="text/javascript">
|
|
new pdf2htmlEX.Viewer('pdf-main', 'pdf-outline');
|
|
</script>
|
|
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<div id="pdf-outline" class="opened">
|
|
"""
|
|
|
|
$outline
|
|
|
|
"""
|
|
</div>
|
|
<div id="pdf-main">
|
|
"""
|
|
|
|
# PDF pages
|
|
$pages
|
|
|
|
"""
|
|
</div>
|
|
</body>
|
|
</html>
|
|
"""
|
|
|
|
# MANIFEST END
|