Skip to content
/ malline Public

Templating engine for Swift, similar to Handlebars & Mustache.

License

Notifications You must be signed in to change notification settings

Naamio/malline

Repository files navigation

Malline

Swift Package Manager macOS Linux License: MIT Twitter: @hellonaamio

Malline is a simple and powerful template language for Swift. It provides a syntax similar to Handlebars & Mustache. If you're familiar with these, you will feel right at home with Malline.

Example

There are {{ articles.count }} articles.

<ul>
  {% for article in articles %}
    <li>{{ article.title }} by {{ article.author }}</li>
  {% endfor %}
</ul>
import Malline

struct Article {
  let title: String
  let author: String
}

let context = [
  "articles": [
    Article(title: "Limitations and Inevitable Demise of Blockchains", author: "Tauno Lehtinen"),
    Article(title: "Distributed Social Networks in Swift", author: "Tauno Lehtinen"),
  ]
]

let environment = Environment(loader: FileSystemLoader(paths: ["templates/"]))
let rendered = try environment.renderTemplate(name: context)

print(rendered)

The User Guide

Resources for Malline template authors to write Malline templates:

Resources to help you integrate Malline into a Swift project:

License

Malline is licensed under the MIT license. See LICENSE for more info.

About

Templating engine for Swift, similar to Handlebars & Mustache.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages