mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
17 lines
314 B
Plaintext
17 lines
314 B
Plaintext
<var name="name" value="data.name"/>
|
|
|
|
<html>
|
|
<head>
|
|
<title>Inline Script</title>
|
|
</head>
|
|
<body>
|
|
Hello ${name}!
|
|
|
|
<script type="text/javascript">
|
|
<div if(foo)></div>
|
|
$(function() {
|
|
alert('${data.name}');
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |