An open API service indexing awesome lists of open source software.

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.

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