Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Mustache template engine for D

NotificationsYou must be signed in to change notification settings

repeatedly/mustache-d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Mustache for D

Mustache is a push-strategy (a.k.a logic-less) template engine.

Features

  • Variables

  • Sections

    • Lists

    • Non-False Values

    • Lambdas(half implementation)

    • Inverted

  • Comments

  • Partials

Usage

See example directory and DDoc comments.

Mustache.Option

  • ext(string)

File extenstion of Mustache template. Default is "mustache".

  • path(string)

root path to read Mustache template. Default is "."(current directory).

  • findPath(string delegate(string))

callback to dynamically find the path do a Mustache template. Default is none. Mutually exclusive with thepath option.

  • level(CacheLevel)

Cache level for Mustache's in-memory cache. Default is "check". See DDoc.

  • handler(String delegate())

Callback delegate for unknown name. handler is called if Context can't find name. Image code is below.

if (followable context is nothing)    return handler is null ? null : handler();

TODO

Working on CTFE.

Link

man page

Copyright

Copyright (c) 2011 Masahiro Nakagawa

Distributed under the Boost Software License, Version 1.0.

About

Mustache template engine for D

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors7

Languages


[8]ページ先頭

©2009-2025 Movatter.jp