Liking cljdoc? Tell your friends :D

Mint

GitHub Actions for test workflow GitHub Actions for lint workflow Babashka nbb

A simple single-line template engine like Mustache and Clojure.

Concept

  • Similar mustache, but Clojure like style

    • {{foo}}

    • {{→ v f (g "foo")}}

    • {{→> v f (g "foo")}}

  • No dependencies

Example

(require '[mint.core :as mint])
;; => nil

(mint/render "{{-> name greet}}!"
             {:name "world" :greet #(str "Hello " %)})
;; => "Hello world!"

(mint/render "{{->> name (str \"Hello \")}}!"
             {:name "world" :str str})
;; => "Hello world!"

Supported functions

  • , →>, some→, some→>

  • when

License

Copyright © 2022-2024 Masashi Iizuka

This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at http://www.eclipse.org/legal/epl-2.0.

This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version, with the GNU Classpath Exception which is available at https://www.gnu.org/software/classpath/license.html.

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close