` wrappers, otherwise just escaping the rest of it for HTML display.
+/
Html linkify(string text) {
auto div = Element.make("div");
while(text.length) {
auto idx = text.indexOf("http");
if(idx == -1) {
idx = text.length;
}
div.appendText(text[0 .. idx]);
text = text[idx .. $];
if(text.length) {
// where does it end? whitespace I guess
auto idxSpace = text.indexOf(" ");
if(idxSpace == -1) idxSpace = text.length;
auto idxLine = text.indexOf("\n");
if(idxLine == -1) idxLine = text.length;
auto idxEnd = idxSpace < idxLine ? idxSpace : idxLine;
auto link = text[0 .. idxEnd];
text = text[idxEnd .. $];
div.addChild("a", link, link);
}
}
return Html(div.innerHTML);
}
/// Given existing encoded HTML, turns \n\n into ``.
Html paragraphsToP(Html html) {
auto text = html.source;
string total;
foreach(p; text.split("\n\n")) {
total ~= "
";
auto lines = p.splitLines;
foreach(idx, line; lines)
if(line.strip.length) {
total ~= line;
if(idx != lines.length - 1)
total ~= "
";
}
total ~= "
";
}
return Html(total);
}
/// Given user text, converts newlines to `
` and encodes the rest.
Html nl2br(string text) {
auto div = Element.make("div");
bool first = true;
foreach(line; splitLines(text)) {
if(!first)
div.addChild("br");
else
first = false;
div.appendText(line);
}
return Html(div.innerHTML);
}
/// Returns true of the string appears to be html/xml - if it matches the pattern
/// for tags or entities.
bool appearsToBeHtml(string src) {
import std.regex;
return cast(bool) match(src, `.*\<[A-Za-z]+>.*`);
}
/// Get the favicon out of a document, or return the default a browser would attempt if it isn't there.
string favicon(Document document) {
auto item = document.querySelector("link[rel~=icon]");
if(item !is null)
return item.href;
return "/favicon.ico"; // it pisses me off that the fucking browsers do this.... but they do, so I will too.
}
///
Element checkbox(string name, string value, string label, bool checked = false) {
auto lbl = Element.make("label");
auto input = lbl.addChild("input");
input.type = "checkbox";
input.name = name;
input.value = value;
if(checked)
input.checked = "checked";
lbl.appendText(" ");
lbl.addChild("span", label);
return lbl;
}
/++ Convenience function to create a small