1. Purpose 2. Usage 3. TODO 4. Installation 4.1. Problems with gcc 3 |
5. Example 6. Feedback 7. Requirements 8. Copying 9. Downloading |
htmlrecode 1.1.4 - Copyright (C) 1992,2002 Bisqwit (http://bisqwit.iki.fi/) Usage: htmlrecode [<option> [<...>]] Reads stdin, writes stdout. Options: -I, --inset setname Assumed input character set (default: iso-8859-1) -O, --outset setname Wanted output character set (default: iso-8859-1) -V, --version Displays version information. -h, --help This help. -l, --lossy Disable lossless conversion. -x, --usehex Use hexadecimal escapes. Pipe in the html file and pipe the output to result file.
$ make $ su # make installIf you do not want to install libargh (included in the archive), do not use "make install" and edit Makefile and enable the STATIC linking instead of DYNAMIC.
basic_string<char>
. This is a real disappointment.
#include <string> using namespace std; int main(void) { basic_string<unsigned> test; test += 5; return 0; }
Here are some latin letters: åäöñé
Here are some CJK (chinese/japanese/korean ideograms): 日本
Here are some html escapes: >"äöê
Source code of the above:
Here are some latin letters: åäöñé<br> Here are some CJK (chinese/japanese/korean ideograms): 日本<br> Here are some html escapes: >"äöê<br>What your browser is getting, is not 日 etc but the actual utf-8 characters.
LDFLAGS=-lrecode
with LDFLAGS=-liconv
or
even commenting it out, if your linking fails.
Generated from
progdesc.php
(last updated: Sat, 14 Dec 2002 16:37:28 +0200)
with docmaker.php
(last updated: Tue, 13 Aug 2002 14:17:29 +0300)
at Sat, 14 Dec 2002 16:37:36 +0200