Generate the metadata HTML content for the given table and given language or NULL if no templates are stored in the pgmetadata.html_template table.
DECLARE
html text;
BEGIN
-- Call the new function with locale set to en
SELECT pgmetadata.get_dataset_item_html_content(_table_schema, _table_name, 'en')
INTO html;
RETURN html;
END;