Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ujjwalguptaofficial/mahal-html-compiler

html compiler for mahal framework
https://github.com/ujjwalguptaofficial/mahal-html-compiler

compiler html mahal mahal-framework

Last synced: about 1 month ago
JSON representation

html compiler for mahal framework

Awesome Lists containing this project

README

        

[![TEST](https://github.com/ujjwalguptaofficial/mahal-html-compiler/actions/workflows/test.yml/badge.svg)](https://github.com/ujjwalguptaofficial/mahal-html-compiler/actions/workflows/test.yml)
[![npm version](https://badge.fury.io/js/@mahaljs%2Fhtml-compiler.svg)](https://badge.fury.io/js/@mahaljs%2Fhtml-compiler)

# mahal-html-compiler

official Html compiler for [mahal framework](https://github.com/ujjwalguptaofficial/mahal)

# Install

```
npm i @mahaljs/html-compiler
```

# Doc

mahal-html-compiler exposes `createRenderer` method which takes html string as input and convert it to a method which is used by mahal.js to create the html element.

```
import { createRenderer } from "@mahaljs/html-compiler";
const method = createRenderer(`

{{ujjwal}}
`);
```