stache-2.1.0: Mustache templates for Haskell

Copyright© 2016–present Stack Builders
LicenseBSD 3 clause
MaintainerMark Karpov <markkarpov92@gmail.com>
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Text.Mustache.Parser

Description

Megaparsec parser for Mustache templates. You don't usually need to import the module, because Text.Mustache re-exports everything you may need, import that module instead.

Synopsis

Documentation

parseMustache Source #

Arguments

:: FilePath

Location of the file to parse

-> Text

File contents (Mustache template)

-> Either (ParseErrorBundle Text Void) [Node]

Parsed nodes or parse error

Parse a given Mustache template.