-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Milestone
Description
-
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')),
)
);
Metadata
Metadata
Assignees
Labels
No labels