jottenlips / vbml

🌐 A package to parse VBML to Vestaboard characters

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VBML - Vestaboard Markup Language

Installation

yarn install @vestaboard/vbml

or

npm i @vestaboard/vbml

Usage

import { vbml } from "@vestaboard/vbml";

// Generate an array of 6 rows of 22 character codes representing the template
const characters = vbml.parse({
  components: [
    {
      style: {
        justify: "center",
        align: "center",
      },
      template: "Hello World!",
    },
  ],
});

Docs

Full documentation is available at https://docs.vestaboard.com/docs/vbml

About

🌐 A package to parse VBML to Vestaboard characters


Languages

Language:TypeScript 100.0%