1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 09:38:40 +00:00
pdf2htmlEX/share/manifest

87 lines
1.5 KiB
Plaintext
Raw Normal View History

# pdf2htmlEX manifest
2013-04-30 04:20:31 +00:00
# Copyright (C) 2012,2013 Lu Wang <coolwanglu@gmail.com>
2012-09-12 15:26:14 +00:00
#
# Syntax
# The first char of each line is the command
# Empty lines are ignored
#
# # - comment
2013-04-30 04:20:31 +00:00
# @ - embed or link to a file from data dir, depending on the value of --single-html
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">
2013-04-04 14:13:08 +00:00
<meta name="generator" content="pdf2htmlEX">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
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-05-01 09:14:29 +00:00
# fancy CSS styles
@fancy.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
# entry point of pdf2htmlEX
2012-09-12 15:26:14 +00:00
"""
2012-09-25 14:24:36 +00:00
<script type="text/javascript">
2013-05-23 05:38:07 +00:00
pdf2htmlEX.defaultViewer = new pdf2htmlEX.Viewer({
container_id : 'page-container',
sidebar_id : 'sidebar',
outline_id : 'outline',
});
2012-09-25 14:24:36 +00:00
</script>
"""
2012-09-25 14:24:36 +00:00
"""
2012-09-12 15:26:14 +00:00
<title></title>
</head>
<body>
2013-01-28 10:46:44 +00:00
"""
2013-06-12 15:53:14 +00:00
# The sidebar
# By default this is hidden, pdf2htmlEX.js will add the 'opened' class if it is not empty
# You can add a class 'opened' here if you want it always opened or you don't use pdf2htmlEX.js
# e.g.
# <div id="sidebar" class="opened">
"""
<div id="sidebar">
"""
# container of outlines
"""
<div id="outline">
"""
2013-01-28 12:00:20 +00:00
$outline
2013-01-28 10:46:44 +00:00
"""
</div>
</div>
2012-09-12 15:26:14 +00:00
"""
# The container of PDF pages
# check base.css for an example and requirements of its CSS styles
"""
<div id="page-container">
"""
2012-09-12 15:26:14 +00:00
$pages
"""
</div>
"""
"""
2012-09-12 15:26:14 +00:00
</body>
</html>
"""
# MANIFEST END