1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-21 20:50:07 +00:00

remove some pointers to --single-html

This commit is contained in:
Lu Wang 2013-11-13 16:14:12 +08:00
parent c4e52aee09
commit 35ede66f50
2 changed files with 3 additions and 3 deletions

View File

@ -287,7 +287,7 @@ By default, pdf2htmlEX will use the manifest in the default data-dir (run `pdf2h
You can modify the default one, or you can create a new one and specify the correct data-dir in the command line.
When single-html is 1, all files referred by the manifest must be located in the data-dir.
All files referred by the manifest must be located in the data-dir.
.SH EXAMPLE
.TP
@ -297,7 +297,7 @@ Convert file.pdf into file.html
.B pdf2htmlEX --clean-tmp 0 --debug 1 /path/to/file.pdf
Convert file.pdf and leave all intermediate files.
.TP
.B pdf2htmlEX --dest-dir out --single-html 0 /path/to/file.pdf
.B pdf2htmlEX --dest-dir out --embed fi /path/to/file.pdf
Convert file.pdf into out/file.html and leave font/image files separated.
.SH COPYRIGHT

View File

@ -176,7 +176,7 @@ protected:
void export_remote_default_font(long long fn_id);
void export_local_font(const FontInfo & info, GfxFont * font, const std::string & original_font_name, const std::string & cssfont);
// depending on single-html, to embed the content or add a link to it
// depending on --embed***, to embed the content or add a link to it
// "type": specify the file type, usually it's the suffix, in which case this parameter could be ""
// "copy": indicates whether to copy the file into dest_dir, if not embedded
void embed_file(std::ostream & out, const std::string & path, const std::string & type, bool copy);