Re: html quasiquoter
Anne Ogborn <[email protected]>
| Newsgroups | gmane.comp.ai.prolog.swi |
|---|---|
| Message-ID | <[email protected]> |
Thanks -
For the record, here's the right way
> html(
{|html(PageLocation)||
<div id='menubar'>
<div class='menubar fixed-width'>
<ul class='menubar-container'>
<li><a href="/">HOME</a></li>
<li>DOWNLOAD... much more HTML ...
|}).
which means doing
foo -->
html([ p('some stuff'), \html({|html(Bar)||<p>Bar</p>|}) ]).