1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-22 13:00:08 +00:00

usage: embedded fonts -> fonts

This commit is contained in:
John Hewson 2013-01-29 10:38:39 +00:00
parent ac134ce810
commit e79c2884bb
3 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ If it's empty, the file name will be determined automatically.
.TP
.B Embedded Fonts
.B Fonts
.TP
.B --embed-base-font <0|1> (Default: 1)

View File

@ -31,7 +31,7 @@ struct Param
std::string css_filename;
std::string outline_filename;
// embedded fonts
// fonts
int embed_base_font;
int embed_external_font;
std::string font_suffix, font_format;

View File

@ -73,7 +73,7 @@ void parse_options (int argc, char **argv)
.add("css-filename", &param.css_filename, "", "filename of the generated css file")
.add("outline-filename", &param.outline_filename, "", "filename of the generated outline file")
// embedded fonts
// fonts
.add("embed-base-font", &param.embed_base_font, 0, "embed local match for standard 14 fonts")
.add("embed-external-font", &param.embed_external_font, 0, "embed local match for external fonts")
.add("font-suffix", &param.font_suffix, ".ttf", "suffix for embedded font files (.ttf,.otf,.woff,.svg)")