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) ويسمح بمحددات تحليل قابلة للتخصيص.
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.