Example output

Unicode output

&#27700;<br>
&#913; &#937;<br>
&#x20AC;<br>
Output of "vilistextum --output-utf-8"
水
Α Ω
€

Font styles

<b>bold</b><br>
<i>italic</i><br>
<u>underlined</u><br>
<em>emphasized<em><br>
<strong>strong</strong>
Output of "vilistextum --convert-tags"
*bold*
/italic/
_underlined_
/emphasized/
*strong*

Links

While processing the html document, vilistextum can collect all external links and list them at the end or output them immediately after the closing tag.
Hypertext links:<br>
<a href="http://www.w3.org/">W3C Web site</a><br>
<a href="localdocument.html">A local document</a><br>
<a href="http://www.cnn.com/">CNN</a>
Output of "vilistextum --links"
Hypertext links:
[1]W3C Web site
A local document
[2]CNN

 References:
   1. http://www.w3.org/
   2. http://www.cnn.com/
Output of "vilistextum --links-inline"
Hypertext links:
W3C Web site <http://www.w3.org/>
A local document
CNN <http://www.cnn.com/>

Transliteration

Vilistextum transliterates some entities that are not included in ISO-8859-1 (mainly entities and characters from windows1252). The multibyte version of vilistextum only transliterates when the entities don't fit into the target character set. This behavior can be switched off with "--dont-convert-characters".
&euro;   &#8364; &#128;<br>
&hellip; &#8230; &#133;<br>
&trade;  &#8482; &#153;
Output of standard vilistextum
EUR EUR EUR
...  ...  ... 
[tm] [tm] [tm]
Output of multibyte-enabled vilistextum
€ € €
… … …
™ ™ ™

Image options

<img href="..."><br>
<img href="..." alt=""><br>
<img href="..." alt="picture"><br>
Output with default options
[Image]
[]
[picture]
Output with "vilistextum --no-image --remove-empty-alt"
[picture]

Lists

<ul>
  <li> first item </li>
  <li> second item </li>
  <ul>
    <li> sub item </li>
  </ul>
  <li> third item </li>
</ul>
Output
  * first item
  * second item
      o sub item
  * third item