mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
14 lines
210 B
Plaintext
14 lines
210 B
Plaintext
<macro alert(title)>
|
|
<div>
|
|
<h1>
|
|
${title}
|
|
</h1>
|
|
<p>
|
|
<macro-body/>
|
|
</p>
|
|
</div>
|
|
</macro>
|
|
|
|
<alert title="My Alert">
|
|
Something went wrong!
|
|
</alert> |