mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
a few more comments
This commit is contained in:
parent
2a0b16e4f4
commit
9657dc09f3
2
TODO
2
TODO
@ -1,5 +1,5 @@
|
|||||||
clean manifest and js
|
|
||||||
move pdf2htmlEX.Viewer's contstants outside
|
move pdf2htmlEX.Viewer's contstants outside
|
||||||
|
default config object
|
||||||
|
|
||||||
- dots issue
|
- dots issue
|
||||||
- AdobeXML*.pdf
|
- AdobeXML*.pdf
|
||||||
|
@ -104,7 +104,7 @@
|
|||||||
.@CSS_PAGE_CONTENT_BOX_CN@.opened { /* used by pdf2htmlEX.js, to show/hide pages */
|
.@CSS_PAGE_CONTENT_BOX_CN@.opened { /* used by pdf2htmlEX.js, to show/hide pages */
|
||||||
display:block;
|
display:block;
|
||||||
}
|
}
|
||||||
.@CSS_FULL_BACKGROUND_IMAGE_CN@ {
|
.@CSS_FULL_BACKGROUND_IMAGE_CN@ { /* images that occupies the whole page */
|
||||||
position:absolute;
|
position:absolute;
|
||||||
border:0;
|
border:0;
|
||||||
margin:0;
|
margin:0;
|
||||||
@ -117,7 +117,7 @@
|
|||||||
-webkit-user-select:none;
|
-webkit-user-select:none;
|
||||||
user-select:none;
|
user-select:none;
|
||||||
}
|
}
|
||||||
.@CSS_BACKGROUND_IMAGE_CN@ {
|
.@CSS_BACKGROUND_IMAGE_CN@ { /* images that cover only a part of the page */
|
||||||
position:absolute;
|
position:absolute;
|
||||||
border:0;
|
border:0;
|
||||||
margin:0;
|
margin:0;
|
||||||
|
@ -12,10 +12,11 @@
|
|||||||
# Special
|
# Special
|
||||||
# If a line contains """ only, all text until next """ will be included
|
# If a line contains """ only, all text until next """ will be included
|
||||||
|
|
||||||
|
#############
|
||||||
# Declaration - Do not modify
|
# Declaration - Do not modify
|
||||||
"""
|
"""
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<!-- Created by pdf2htmlEX (http://github.com/coolwanglu/pdf2htmlEX) -->
|
<!-- Created by pdf2htmlEX (https://github.com/coolwanglu/pdf2htmlex) -->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
@ -23,17 +24,21 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
#############
|
||||||
|
# Styles
|
||||||
# base CSS styles - Do not modify
|
# base CSS styles - Do not modify
|
||||||
@base.css
|
@base.css
|
||||||
# fancy CSS styles - Optional
|
# fancy CSS styles - Optional
|
||||||
@fancy.css
|
@fancy.css
|
||||||
# PDF specific CSS styles - Do not modify
|
# PDF specific CSS styles - Do not modify
|
||||||
$css
|
$css
|
||||||
# Javascript codes - Optional
|
|
||||||
|
|
||||||
|
#############
|
||||||
|
# UI stuffs, optional
|
||||||
@jquery.js
|
@jquery.js
|
||||||
@pdf2htmlEX.js
|
@pdf2htmlEX.js
|
||||||
|
# entry point
|
||||||
# entry point of pdf2htmlEX - Optional
|
|
||||||
"""
|
"""
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
try{
|
try{
|
||||||
@ -47,6 +52,7 @@ try{
|
|||||||
</script>
|
</script>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
#############
|
||||||
# Do not modify
|
# Do not modify
|
||||||
"""
|
"""
|
||||||
<title></title>
|
<title></title>
|
||||||
@ -54,6 +60,7 @@ try{
|
|||||||
<body>
|
<body>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
#############
|
||||||
# The sidebar
|
# The sidebar
|
||||||
# By default this is hidden, pdf2htmlEX.js will add the 'opened' class if it is not empty
|
# 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
|
# You can add a class 'opened' here if you want it always opened or you don't use pdf2htmlEX.js
|
||||||
@ -72,6 +79,7 @@ $outline
|
|||||||
</div>
|
</div>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
#############
|
||||||
# The container of PDF pages
|
# The container of PDF pages
|
||||||
# check base.css for an example and requirements of its CSS styles
|
# check base.css for an example and requirements of its CSS styles
|
||||||
"""
|
"""
|
||||||
@ -82,6 +90,7 @@ $pages
|
|||||||
</div>
|
</div>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
#############
|
||||||
# The loading indicator
|
# The loading indicator
|
||||||
# shown when loading a page via ajax
|
# shown when loading a page via ajax
|
||||||
"""
|
"""
|
||||||
@ -92,6 +101,7 @@ $pages
|
|||||||
</div>
|
</div>
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
#############
|
||||||
# Do not modify
|
# Do not modify
|
||||||
"""
|
"""
|
||||||
</body>
|
</body>
|
||||||
|
Loading…
Reference in New Issue
Block a user