Skip to content

Commit 3d56b67

Browse files
authored
Merge pull request #920 from saurabhdaware/patch-1
feat(generators/abell): add updated information
2 parents d85e980 + ce2e5c3 commit 3d56b67

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

src/site/generators/abell.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,38 @@ license:
88
- MIT
99
templates:
1010
- Abell
11-
description: A JavaScript based static-site-generator to help you create JSON, Markdown, or static-data based websites.
11+
description: A Low Level, Framework Agnostic, Vite powered Static Site Generator for JavaScript Developers
1212
twitter: AbellLand
1313
startertemplaterepo: https://github.com/abelljs/abell-starter-minima
1414
---
1515

16-
Abell is a Node.js based static-site-generator to help you create JSON, Markdown, or static-data based websites.
16+
Abell is a low-level static-site-generator built on top of Vite to give high flexibility while keeping the setup closer to vanilla HTML, CSS, JS
1717

1818
### Installation
1919

20-
You can boilerplate a starter template using `create-abell-app`
20+
You can boilerplate a starter template using `create-abell`
2121

2222
```sh
23-
npx create-abell-app my-blog --template https://github.com/abelljs/abell-starter-minima
23+
npx create-abell my-blog --template abelljs/abell-starter-minima
2424

2525
cd my-blog
2626

2727
npm run dev
2828
```
2929

30-
And boom🎉 You will have a live server running.
30+
And tada 🎉 You will have a live server running.
3131

3232

3333
### Hello World in Abell
3434

35-
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.
3636

3737
**Input:**
3838
```html
39-
{{ const greet = 'Hello, World!' }}
39+
{{
40+
/** @declaration */
41+
const greet = 'Hello, World!';
42+
}}
4043
<html>
4144
<body>{{ greet.toUpperCase() }}</body>
4245
</html>
@@ -50,5 +53,4 @@ Abell is built on top of a new templating language `.abell` which lets you write
5053
```
5154

5255

53-
54-
Check out https://abelljs.org for detailed documentation.
56+
Check out https://abelljs.org for detailed documentation.

0 commit comments

Comments
 (0)