html-es is a TypeScript transpiler (v0.1.5) that converts EsHTML, a variant of HTML with Spanish-language tags and attributes, into standard HTML. It is designed as an educational tool for Spanish speakers learning web development, removing the English terminology barrier. The package is in active development with a small API surface: a class-based transpiler supporting optional strict mode and warning control. It ships TypeScript types but is not yet published to npm as of this writing. No known alternatives for Spanish HTML transliteration exist.
npm install html-esNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates an EsHTMLTranspiler instance and transpiles Spanish-tagged markup to standard HTML.
Clone repository and run `npm run build` then `npm pack`.
Check the source mapping files for supported attributes; contribute missing ones.
Ensure all tags are properly closed in EsHTML source.
Use const { EsHTMLTranspiler } = require('html-es');Use import { EsHTMLTranspiler } from 'html-es';Ensure correct import: import { EsHTMLTranspiler } from 'html-es'; then new EsHTMLTranspiler();No dependency data recorded yet.