===== HTML Mode ===== HTML mode has been removed from Uzbl in favour of using [[http://en.wikipedia.org/wiki/Data_URI_scheme|data URI scheme]]. ==== Uzblcat ==== Uzblcat was a small perl script that made handling uzbl's HTML mode easy and safe. === Usage example === uzblcat *.html | uzbl curl foo.com bar.org | uzblcat | uzbl curl baz.net | BASE_URL=http://baz.net uzblcat | uzbl === backwards compatibility === You can use the following replacement for with scripts that depended on it. #!/usr/bin/env python from sys import stdin, stdout from base64 import b64encode stdout.write("uri data:text/html;base64,") stdout.write(b64encode(stdin.read())) # vim: set noet ff=unix In some cases you need to specify to read the config from stdin ./uzblcat < file.html | uzbl-core -c -