2 repositorios
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 es un compilador de plantillas sin lógica y motor de plantillas Mustache. Transforma plantillas estáticas en funciones de JavaScript ejecutables para generar cadenas basadas en datos sin usar lógica condicional o de bucle. El sistema se centra en la precompilación para eliminar la sobrecarga de análisis durante la ejecución en tiempo de ejecución. Esto incluye una librería de plantillas precompiladas y una interfaz de línea de comandos para convertir archivos de plantilla en JavaScript optimizado. El motor maneja la generación de contenido dinámico mediante la compilación de plantillas y el renderizado de datos. Soporta fragmentos de UI reutilizables mediante parciales y permite delimitadores de análisis personalizables.
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.