https://github.com/brack-lang/std.html
The standard library for Brack language targeting HTML conversion.
https://github.com/brack-lang/std.html
brack html stdlib
Last synced: 9 days ago
JSON representation
The standard library for Brack language targeting HTML conversion.
- Host: GitHub
- URL: https://github.com/brack-lang/std.html
- Owner: brack-lang
- License: apache-2.0
- Created: 2023-12-30T13:37:43.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2024-09-15T05:02:11.000Z (10 months ago)
- Last Synced: 2025-03-17T05:34:50.946Z (3 months ago)
- Topics: brack, html, stdlib
- Language: Rust
- Homepage:
- Size: 46.9 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# std.html
The standard library of the brack-language for targeting to naive HTML.## Installation
```sh
brack add github:brack-lang/[email protected] # develop
brack add github:brack-lang/[email protected] # main (under construction)
```## Syntax
### Heading
```brack
{std.* Hello!}
{std.** Hello\, World!}
``````html
Hello!
Hello, World!
```### Bold
```brack
[std.* Hello!]
``````html
Hello!
```### Italic
```brack
[std./ Hello!]
``````html
Hello!
```### List
```brack
[std.list
Hokkaido,
[std.list
Aomori,
Akita,
Iwate,
Yamagata,
Miyagi,
Fukushima
],
Ibaraki
]
``````html
- Hokkaido
- Aomori
- Akita
- Iwate
- Yamagata
- Miyagi
- Fukushima
- Ibaraki
```
### Quote
```brack
[std.> Hello!]
```
## LICENSE
MIT OR Apache-2.0