HtmlConverter.enableVtOutput

Will enable color output using VT codes. Determines color through dom.d's css support, which means you need to apply a stylesheet first.

import arsd.dom;

auto document = new Document(source_code_for_html);
auto stylesheet = new Stylesheet(source_code_for_css);
stylesheet.apply(document);
class HtmlConverter
bool enableVtOutput;
Suggestion Box / Bug Report