oelin / tempest

A minimal templating library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tempest

A minimal templating library.

Installation

npm i git+https://github.com/oelin/tempest

Usage

import render from "tempest"

render(
  "The {{fox}} jumped over the {{dog}}.",
  {
    fox: "quick brown fox",
    dog: "lazy dog",
  },
)

// "The quick brown fox jumped over the lazy dog."

About

A minimal templating library.


Languages

Language:JavaScript 100.0%