# HTML **Repository Path**: mirrors_GerHobbelt/HTML ## Basic Information - **Project Name**: HTML - **Description**: HTML is The BEST JavaScript templating language EVER - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-11 - **Last Updated**: 2026-08-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # HTML is The BEST JavaScript templating language EVER **HTML was heavily inspired by [Jade](http://github.com/visionmedia/jade) from [Visionmedia](http://github.com/visionmedia/)** ## Features - HTML is valid (X) HTML 4.01 and HTML5! - HTML is Insanely Fast ! - Safari, Internet Explorer, Chrome, and Firefox are all specifically optimized for rendering HTML! - HTML is highly portable ( Even tested it in Microsoft Frontpage and Macromedia Dreamweaver ) - HTML is `< 4 bytes` in size! - It's not possible to write logic in HTML - I'm pretty annoyed I had to build this. *Note: I have no fucking clue how to successfully use [Weld](https://github.com/hij1nx/weld) or [Plates](https://github.com/flatiron/plates).* ## Core Concepts - You already know HTML - JSON data automatically maps to CSS classes - You cannot define any custom logic or maps with HTML - That's it. ## Examples ### Rendering basic data ```js var html = require('html-lang'); console.log(html.render({ name: "Bob" }, tmpl)); ``` ```html
name placeholder
``` **outputs:** ```htmlBob
``` ### Rendering an Object ```js var html = require('html-lang'); var user = { user: { name: "Bob", email: "bob@bob.com" }}; console.log(html.render(user, tmpl)); ``` ```htmlname placeholder
email placeholder
Bob
bob@bob.com
name placeholder
email placeholder
Bob
bob@bob.com
Marak
marak@marak.com