mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
26 lines
488 B
Plaintext
26 lines
488 B
Plaintext
<def function="greeting(name)">
|
|
<p class="greeting">Hello, ${name}!</p>
|
|
</def>
|
|
|
|
${greeting("World")},
|
|
${greeting("Frank")}
|
|
|
|
|
|
<def function="section(url, title, body)" body-param="body">
|
|
<div class="section">
|
|
<h1>
|
|
<a href="$url">
|
|
$title
|
|
</a>
|
|
</h1>
|
|
<p>
|
|
${body}
|
|
</p>
|
|
</div>
|
|
</def>
|
|
|
|
<invoke function="section" url="http://www.ebay.com/" title="ebay">
|
|
<i>
|
|
Visit eBay
|
|
</i>
|
|
</invoke> |