2 个仓库
Rendering logic specifically implementing the Mustache specification for merging data and templates.
Distinct from Template-Driven Rendering: Specific to Mustache syntax and logic-less rendering, rather than general template-driven rendering
Explore 2 awesome GitHub repositories matching web development · Mustache Template Rendering. Refine with filters or upvote what's useful.
hogan.js 是一个无逻辑模板编译器和 Mustache 模板引擎。它将静态模板转换为可执行的 JavaScript 函数,以生成数据驱动的字符串,而无需使用条件或循环逻辑。 该系统专注于预编译,以消除运行时执行期间的解析开销。这包括一个预编译模板库和一个用于将模板文件转换为优化 JavaScript 的命令行界面。 该引擎通过模板编译和数据渲染处理动态内容生成。它支持通过局部模板(Partials)实现可重用的 UI 片段,并允许自定义解析分隔符。
Merges data objects with Mustache templates to generate final string output for web pages or documents.
This project is a command-line utility that converts structured JSON or YAML data into professional, human-readable documents. It functions as a resume generation system, transforming machine-readable biodata into styled outputs such as HTML or LaTeX. The tool utilizes a template-based engine to separate data from presentation, allowing for the customization of document layouts and branding. It supports the inclusion of rich text elements within source files by parsing standard markdown syntax, ensuring that formatting like bold, italics, and hyperlinks is preserved in the final output. The
Uses logic-less mustache templates to merge structured data into document layouts.