| AHA(1) | General Commands Manual | AHA(1) | 
NAME¶
aha — Convert ANSI
    escape sequences to HTML
SYNOPSIS¶
| aha | [ -bhlnprsvwx] [-cfile] [-ffile] [-iX] [-LLANG] [-tTITLE] [-ySTYLE] | 
DESCRIPTION¶
aha reads ECMA-48 SGR-colored text from
    the standard input, converts it to colored HTML and writes it to the
    standard output. The options are as follows:
- -b,- --black
- Style HTML output to use a black background with white text.
- -cfile,- --cssfile
- Adds the given css file to the output. In fact just adds <link rel="stylesheet" href=" file " /> to the header.
- -ffile
- Read from file instead of from the standard input.
- -h,- --help,- -?
- Print help for ahato the standard output.
- -iX,- --isoX
- Use the ISO-8859-X character encoding instead of UTF-8 for the output, where X is a number from 1-16.
- -l,- --line-fix
- Use a fix for inputs using control sequences to change the cursor position. This is a hot fix, thus it may not work with every program.
- -LLANG,- --langLANG
- Uses the ISO-639-1
    
 code LANG for the language.
- -n,- --no-header
- Do not enclose HTML output in <html>, <head> and <body> tags.
- -p,- --pink
- Style HTML output to use a pink background.
- -r,- --ignore-cr
- Ignore all carriage-returns (ASCII sign 13, \r) which may lead to double new lines in html.
- -s,- --stylesheet
- Use a stylesheet instead of inline styles.
- -tTITLE,- --titleTITLE
- Set the HTML document title to TITLE instead of "stdin" or the filename.
- -v,- --version
- Print version number of ahato the standard output and exit.
- -w,- --word-wrap
- Wrap long lines in the html output. Works with CSS3 supporting browsers and many older ones.
- -x,- --no-xml
- Don't use doctype xml but html (may useful for old browsers like IE)
- -ySTYLE,- --styleSTYLE
- Sets the style used in the <body> element to STYLE after styles set by other parameters.
EXAMPLES¶
Create an HTML file with a black background, a custom title and a
    larger font-size using aha's help:
$ aha -h | aha -b -t 'the awesome aha
  help' -y 'font-size:1.875em' > aha-help.htmlCreate an HTML file with a white background using the output of diff(1):
$ diff -u --color=always oldfile.c
  newfile.c | aha > diff.htmlCreate an HTML file with a black background from the output of
    htop(1). You have to use option -l
    due the other new-line-commands htop uses:
$ echo q | htop | aha -b -l >
  htop.htmlCreate an HTML file from the output of this man page. man(1) uses bold and underline formatting from nroff(1), which ul(1) converts to SGR:
$ MAN_KEEP_FORMATTING=1 COLUMNS=80
  man aha | ul | aha > man-aha.htmlSEE ALSO¶
Control Functions for Coded Character Sets, Ecma, ECMA-48, 61, 1991.
AUTHORS¶
The aha utility is maintained by
    Alexander Matthes ‘Ziz’
    <ziz@mailbox.org>.
BUGS¶
Blinking text using the HTML tag
    <blink> and the css property
    text-decoration:blink have been deprecated on modern
    browsers, thus requiring the use of option -s and
    redefining the .blink css class.
| August 4, 2020 | Debian |