:- use_module(library(http/html_write)). date --> "2023". page_head --> html({|html|| A test page|}). page_content --> html({|html||

A test paragraph \date

|}). :- phrase(page(\page_head, \page_content), Out), print_html(Out). %% swipl -g '[html]' -t 'halt'