1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 18:30:34 +00:00
pdf2htmlEX/share/manifest

124 lines
2.5 KiB
Plaintext

# pdf2htmlEX manifest
# Copyright (C) 2012,2013 Lu Wang <coolwanglu@gmail.com>
#
# Syntax
# The first char of each line is the command
# Empty lines are ignored
#
# # - comment
# @ - embed or link to a file from data dir, depending on the values of --embed-*** options
# $ - special use for pdf2htmlEX
#
# Special
# If a line contains """ only, all text until next """ will be included
#############
# Declaration - Do not modify
"""
<!DOCTYPE html>
<!-- Created by pdf2htmlEX (https://github.com/coolwanglu/pdf2htmlex) -->
<html>
<head>
<meta charset="utf-8">
<meta name="generator" content="pdf2htmlEX">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
"""
#############
# Styles
# base CSS styles - Do not modify
@base.css
# fancy CSS styles - Optional
@fancy.css
# PDF specific CSS styles - Do not modify
$css
#############
# UI stuffs, optional
# jQuery, required by pdf2htmlEX.js
# By default
# - the file from Google CDN is included, in order to reduce the size of output HTML
# - HTTP is always used in case the file is accessed locally
#
# You may embed the file (provided in pdf2htmlEX) into HTML:
# @jquery-1.9.1.min.js
#
# Or you may remove "http:" to match the protocol of the published HTML:
# <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
#
"""
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
"""
# entry point of pdf2htmlEX.Viewer
# You can override default configuration by passing an object to the constructor of Viewer
# Refer to DEFAULT_CONFIG in viewer.js for possible keys
@pdf2htmlEX.js
"""
<script>
try{
pdf2htmlEX.defaultViewer = new pdf2htmlEX.Viewer();
}catch(e){}
</script>
"""
#############
# Do not modify
"""
<title></title>
</head>
<body>
"""
#############
# 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">
"""
$outline
"""
</div>
</div>
"""
#############
# The container of PDF pages
# check base.css for an example and requirements of its CSS styles
"""
<div id="page-container">
"""
$pages
"""
</div>
"""
#############
# The loading indicator
# shown when loading a page via ajax
"""
<div class="loading-indicator">
"""
@pdf2htmlEX-64x64.png
"""
</div>
"""
#############
# Do not modify
"""
</body>
</html>
"""
# MANIFEST END