2 Repos
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 ist ein logikfreier Template-Compiler und eine Mustache-Templating-Engine. Sie transformiert statische Templates in ausführbare JavaScript-Funktionen, um datengesteuerte Strings ohne die Verwendung von bedingter oder Schleifenlogik zu generieren. Das System konzentriert sich auf die Vorkompilierung, um Parsing-Overhead während der Laufzeitausführung zu eliminieren. Dies beinhaltet eine vorkompilierte Template-Bibliothek und ein Command-Line-Interface zur Konvertierung von Template-Dateien in optimiertes JavaScript. Die Engine handhabt die dynamische Content-Generierung durch Template-Kompilierung und Daten-Rendering. Sie unterstützt wiederverwendbare UI-Fragmente mittels Partials und ermöglicht anpassbare Parsing-Begrenzer.
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.