diff options
author | B. Watson <yalhcru@gmail.com> | 2022-01-10 23:19:23 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-01-17 09:03:28 +0700 |
commit | c218f521979d82dfe7faa356d3d5d63e03eab419 (patch) | |
tree | 2f2aaaedf61b24f0698e0ade0fac5e135ab6a84e /system/archmage/archmage.rst | |
parent | 725c8bbf4a77331bd0cfb2099ebd4ec7898be40b (diff) | |
download | slackbuilds-c218f521979d82dfe7faa356d3d5d63e03eab419.tar.gz slackbuilds-c218f521979d82dfe7faa356d3d5d63e03eab419.tar.xz |
system/archmage: Added (CHM to HTML/PDF/text converter)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/archmage/archmage.rst')
-rw-r--r-- | system/archmage/archmage.rst | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/system/archmage/archmage.rst b/system/archmage/archmage.rst new file mode 100644 index 0000000000..1732696834 --- /dev/null +++ b/system/archmage/archmage.rst @@ -0,0 +1,74 @@ +.. RST source for archmage(1) man page. Convert with: +.. rst2man.py archmage.rst > archmage.1 +.. rst2man.py comes from the SBo development/docutils package. + +.. |version| replace:: 0.4.2.1 +.. |date| date:: + +======== +archmage +======== + +--------------------------------------- +convert CHM to PDF, HTML, or plain text +--------------------------------------- + +:Manual section: 1 +:Manual group: SlackBuilds.org +:Date: |date| +:Version: |version| + +SYNOPSIS +======== + +archmage [*-options*] **chmfile** [**destdir** | **destfile**] + +DESCRIPTION +=========== + +**archmage** converts CHM files to HTML, plain text and PDF. CHM is the +format used by Microsoft HTML Help, also known as Compiled HTML. + +OPTIONS +======= + +-x, --extract + Extracts CHM file into specified directory. If destination + directory is omitted, then a new one will be created based + on the name of the CHM file. This option is the default. + +-c, --convert=format + Convert CHM file into specified file format. If destination + file is omitted, the output filename will be created based on + the name of the CHM file. Available formats:: + + html - Single HTML file + text - Plain text file (uses lynx(1) or elinks(1)) + pdf - Adobe PDF + +-d, --dump + Dump HTML data from CHM file to standard output. + +-V, --version + Print version number and exit. + +-h, --help + Print help message and exit. + +COPYRIGHT +========= + +See the file /usr/doc/archmage-|version|/COPYING for license information. + +AUTHORS +======= + +archmage was written by dottedmag. + +This man page written for the SlackBuilds.org project +by B. Watson, and is licensed under the WTFPL. + +SEE ALSO +======== + +The archmage homepage: https://github.com/dottedmag/archmage |