https://github.com/schultyy/mustache.ex
Mustache templates for Elixir
https://github.com/schultyy/mustache.ex
elixir mustache
Last synced: 6 months ago
JSON representation
Mustache templates for Elixir
- Host: GitHub
- URL: https://github.com/schultyy/mustache.ex
- Owner: schultyy
- License: mit
- Created: 2015-04-05T20:33:13.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-09-18T20:28:58.000Z (about 2 years ago)
- Last Synced: 2025-04-06T23:35:29.382Z (6 months ago)
- Topics: elixir, mustache
- Language: Elixir
- Size: 56.6 KB
- Stars: 63
- Watchers: 4
- Forks: 13
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Mustache
========[](https://hex.pm/packages/mustache)
[](https://hexdocs.pm/mustache/)
[](https://hex.pm/packages/mustache)
[](https://github.com/schultyy/Mustache.ex/blob/master/LICENSE.md)
[](https://github.com/schultyy/Mustache.ex/commits/master)Minimal templating with {{mustaches}} in Elixir - [http://mustache.github.com/](http://mustache.github.com/)
Prerequisites
=============- Elixir 1.x
Installation
============In your `mix.exs`, add Mustache as dependency:
```elixir
defp deps do
[{:mustache, "~> 0.5.0"}]
end
```Example
=======```elixir
Mustache.render("Hello, my name is {{name}}", %{name: "Alice"})
```Tests
=====The test folder contains tests showing the currently implemented feature set. The tests are taken from the mustache specs
project [https://github.com/mustache/spec](https://github.com/mustache/spec).Run currently passing tests:
```bash
$ mix test --exclude pending:true
```Run all tests:
```bash
$ mix test
```Copyright and License
=====================Copyright (c) 2023 Jan Schulte
This work is free. You can redistribute it and/or modify it under the
terms of the MIT License. See the [LICENSE.md](./LICENSE.md) file for more details.