目录
目录README.md

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.

邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号