mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
15 lines
253 B
Plaintext
15 lines
253 B
Plaintext
import IncludeTarget from "./include-target.marko"
|
|
|
|
<${IncludeTarget}
|
|
...{
|
|
name: "Frank"
|
|
}
|
|
count=20>
|
|
Have a <b>wonderful</b> day!
|
|
</>
|
|
<${IncludeTarget} ...{
|
|
name: "Frank",
|
|
count: 20
|
|
}>
|
|
Have a <b>wonderful</b> day!
|
|
</> |