nobody knows

This commit is contained in:
Adam D. Ruppe 2011-11-28 20:03:31 -05:00
parent d921aedfd6
commit b650e9d536
1 changed files with 9 additions and 1 deletions

10
dom.d
View File

@ -26,7 +26,6 @@ void eprintf(T...)(Element parent, string format, T data) {
+/
// Biggest (known) fixme left for "tag soup": <p> .... <p> in loose mode should close it on the second opening.
// Biggest FIXME for real documents: character set encoding detection
// Should I support Element.dataset? it does dash to camelcase for attribute "data-xxx-xxx"
@ -46,8 +45,17 @@ void eprintf(T...)(Element parent, string format, T data) {
The haml converter produces a mixin string that does getElementBySelectorAndMakeIfNotThere and calls
setMainPart on it. boom.
but meh
*/
void sanitizeHtml(Document document) {
foreach(e; document.root.tree) {
}
}
///.
T[] insertAfter(T)(T[] arr, int position, T[] what) {
assert(position < arr.length);