You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Abell is built on top of a new templating language `.abell` which lets you write Node.js code inside HTML like syntax which is executed during the build time.
35
+
With Abell, you can write JavaScript inside HTML. This gets executed on build time.
36
36
37
37
**Input:**
38
38
```html
39
-
{{ const greet = 'Hello, World!' }}
39
+
{{
40
+
/** @declaration */
41
+
const greet = 'Hello, World!';
42
+
}}
40
43
<html>
41
44
<body>{{ greet.toUpperCase() }}</body>
42
45
</html>
@@ -50,5 +53,4 @@ Abell is built on top of a new templating language `.abell` which lets you write
50
53
```
51
54
52
55
53
-
54
-
Check out https://abelljs.org for detailed documentation.
56
+
Check out https://abelljs.org for detailed documentation.
0 commit comments