https://github.com/esolia/help.esolia.pro
eSolia help contents site built on lume
https://github.com/esolia/help.esolia.pro
deno denodeploy esolia lume ssg vento
Last synced: 9 months ago
JSON representation
eSolia help contents site built on lume
- Host: GitHub
- URL: https://github.com/esolia/help.esolia.pro
- Owner: eSolia
- Created: 2023-01-26T05:50:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-30T06:10:33.000Z (about 1 year ago)
- Last Synced: 2025-08-28T22:57:45.247Z (10 months ago)
- Topics: deno, denodeploy, esolia, lume, ssg, vento
- Language: CSS
- Homepage: https://help.esolia.pro
- Size: 67.4 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://app.netlify.com/sites/help-esolia-pro/deploys)
# help.esolia.pro
This doc site is built and based on [lume](https://lume.land/), the static site generator for deno, and is hosted on [Netlify](https://netlify.com) as static files. It's intended to give details about topics that might be too much for eSolia's main marketing sites, such as details about the security of our PROdb cloud database or bulk email error codes. It takes advantage of the i18n feature of lume to generate content pages in English and Japanese.
Thank you, [รscar Otero](https://github.com/oscarotero), for lume and all your support on Discord. ๐๐ป
## Mechanics
### Deno-related
Upgrade:
```
> deno task lume upgrade
```
Serve locally:
```
> deno task lume --serve
```
### Markdown
If you set `templateEngine: [vto, md]` in frontmatter, you can use components or call helpers:
```
{{ comp.callout({
text: "Lorem ipsum",
type: "warning"
})}}
```
With just the markdown engine you can use "alerts", which come from the alert plugin to markdown-it allowing [github-style alerts](https://github.com/orgs/community/discussions/16925):
```
> [!NOTE]
> Highlights information that users should take into account, even when skimming.
> [!TIP]
> Optional information to help a user be more successful.
> [!IMPORTANT]
> Crucial information necessary for users to succeed.
> [!WARNING]
> Critical content demanding immediate user attention due to potential risks.
> [!CAUTION]
> Negative potential consequences of an action.
```