<article>
<h1>{{headline}}</h1>
<p>{{bodyText}}</p>
</article>
function article(params) {
return "<article>" +
"<h1>" + params.headline + "</h1>" +
"<p>" + params.bodyText + "</p>" +
"</article>";
}
function article(params) {
return "<article>" +
"<h1>" + params.headline + "</h1>" +
"<p>" + params.bodyText + "</p>" +
"</article>";
}
article({
headline: "Caterpillars revolt",
bodyText: "Silk price skyrockets"
});
<article>
<h1>Caterpillars revolt</h1>
<p>Silk price skyrockets</p>
</article>
edave.net
@edave
Caterpillar pictures copyright "The Very Hungry Caterpillar" by Eric Carle