HTMLt
HTMLt is a hypothetical markup language proposed as an extension of HTML to integrate templating and data binding directly into the markup. Unlike traditional HTML, HTMLt aims to enable dynamic rendering without separate templating engines while preserving backward compatibility with HTML documents.
Key features include declarative directives embedded as attributes, such as data-ht-for for iteration, data-ht-if for conditional
Syntax is designed to be HTML-friendly: existing HTML remains valid, while templates and directives are added
<div data-ht-for="user in users" data-ht-template="user">
<span data-ht-bind="user.name"></span>
Status and reception: As a hypothetical concept, HTMLt has not progressed to formal standardization. It remains
See also: HTML, Web Components, Templating languages.
---