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