Skip to content

The standard library for Brack language targeting HTML conversion.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

brack-lang/std.html

Repository files navigation

std.html

The standard library of the brack-language for targeting to naive HTML.

Installation

$ brack add github:brack-lang/std.html

Syntax

Heading

{std.* Hello!}
{std.** }
<h1>Hello!</h1>

Bold

[std.* Hello!]
<span>Hello!</span>

Italic

[std./ Hello!]
<span style="">Hello!</span>

List

[std.list
    Hokkaido,
    [std.list
        Aomori,
        Akita,
        Iwate,
        Yamagata,
        Miyagi,
        Fukushima
    ],
    Ibaraki
]
<ul>
    <li>Hokkaido</li>
    <ul>
        <li>Aomori</li>
        <li>Akita</li>
        <li>Iwate</li>
        <li>Yamagata</li>
        <li>Miyagi</li>
        <li>Fukushima</li>
    </ul>
    <li>Ibaraki</li>
</ul>

Quote

[std.> Hello!]

LICENSE

MIT OR Apache-2.0

About

The standard library for Brack language targeting HTML conversion.

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published