sqlite-html
sqlite-html copied to clipboard
HTML element tools
- [ ]
html_element(tag, attributes, child1, child2, ....) - [ ]
html_attributes(attr1, attr2, ...)(orhtml_attrs)- [ ]
html_attribute(name, value, namespace)(orhtml_attr()
- [ ]
-- https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics
select
html_element('html', null,
html_element('head', null,
html_element('meta', html_attributes('charset', 'utf-8')),
html_element('title', null, 'My test page'),
),
html_element('body', null,
html_element('img', html_attributes('src', 'images/firefox-icon.png', 'alt', 'My test image')),
)
);
aggregate functions?
select html_element('table', null,
-- thead stuff...
html_element('tbody', null,
html_element_agg('tr', null,
html_element('td', null, name),
html_element('td', null, value),
)
)
)
from measurements;