changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/dat/handlebars.lisp

changeset 698: 96958d3eb5b0
parent: 74a55d5decce
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; handlebars.lisp --- Handlebars Template Format
2 
3 ;; Minimal templating on steroids in Lisp
4 
5 ;;; Commentary
6 
7 ;; handlebars is a popular templating system initially derived from mustache
8 ;; which happened to have some CL bindings:
9 ;; https://github.com/kanru/cl-mustache
10 
11 ;; This package aims to integrate directly with the DAT/HTML package but
12 ;; should be able to be dropped-in to other serde-enabled formats like DAT/XML
13 ;; or DAT/JSON.
14 
15 ;; ref: https://handlebarsjs.com
16 
17 ;;; Code:
18 (in-package :dat/handlebars)