mirror of https://github.com/adamdruppe/arsd.git
remove some css i was playing with
This commit is contained in:
parent
f3f5c6e12f
commit
e2124996b9
12
htmltotext.d
12
htmltotext.d
|
@ -25,6 +25,9 @@ class HtmlConverter {
|
||||||
case "head", "script", "style":
|
case "head", "script", "style":
|
||||||
// intentionally blank
|
// intentionally blank
|
||||||
break;
|
break;
|
||||||
|
// The table stuff is removed right now because while it looks
|
||||||
|
// ok for test tables, it isn't working well for the emails I have
|
||||||
|
// - it handles data ok but not really nested layouts.
|
||||||
case "trfixme":
|
case "trfixme":
|
||||||
auto children = element.childElements;
|
auto children = element.childElements;
|
||||||
|
|
||||||
|
@ -99,6 +102,7 @@ class HtmlConverter {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "span":
|
case "span":
|
||||||
|
/*
|
||||||
auto csc = element.computedStyle.getValue("color");
|
auto csc = element.computedStyle.getValue("color");
|
||||||
if(csc.length) {
|
if(csc.length) {
|
||||||
auto c = Color.fromString(csc);
|
auto c = Color.fromString(csc);
|
||||||
|
@ -108,6 +112,7 @@ class HtmlConverter {
|
||||||
|
|
||||||
if(csc.length)
|
if(csc.length)
|
||||||
s ~= "\033[39m";
|
s ~= "\033[39m";
|
||||||
|
*/
|
||||||
break;
|
break;
|
||||||
case "p":
|
case "p":
|
||||||
startBlock();
|
startBlock();
|
||||||
|
@ -224,10 +229,9 @@ class HtmlConverter {
|
||||||
else
|
else
|
||||||
start = document.root;
|
start = document.root;
|
||||||
|
|
||||||
import std.file;
|
//import std.file;
|
||||||
auto stylesheet = new StyleSheet(readText("/var/www/dpldocs.info/experimental-docs/style.css"));
|
//auto stylesheet = new StyleSheet(readText("/var/www/dpldocs.info/experimental-docs/style.css"));
|
||||||
|
//stylesheet.apply(document);
|
||||||
stylesheet.apply(document);
|
|
||||||
|
|
||||||
htmlToText(start, false, wrapAmount);
|
htmlToText(start, false, wrapAmount);
|
||||||
return s;
|
return s;
|
||||||
|
|
Loading…
Reference in New Issue