# Pastebin 8DwTdjSy #!/usr/bin/env raku use v6.d; use HTML::Functional; my $head = head [ meta :charset; meta :name, :content; meta :name, :content; title "Raku HTML::Functional"; script :src; link :rel, :href; style q:to/END/; .jumbotron { background-color: #e6ffe6; text-align: center; } END ]; my $body = body [ div :class, [ h1 "Welcome to Dunder Mifflin!"; #use ; to stop

slurping

p "Dunder Mifflin Inc. (stock symbol {strong 'DMI'}) " ~ q:to/END/; is a micro-cap regional paper and office supply distributor with an emphasis on servicing small-business clients. END ]; p :hx-get, "Click Me"; p ^'

Escaped & Raw HTML!
'; ]; my $html = html :lang, [ $head, $body, ]; say "$html";