¿Qué es el formato de archivo WHTML?
Un archivo .whtml es un documento guardado por el editor TinyMCE dentro de daedalOS, un entorno de escritorio de código abierto que se ejecuta en un navegador web. El proyecto proviene del desarrollador Dustin Brett, y el sufijo .whtml es una convención de nomenclatura que utiliza en lugar de un estándar formal. En el código fuente de daedalOS, la extensión está registrada como el tipo WysiwygHtmlDocument.
A pesar de la extensión inusual, el archivo es HTML ordinario. Es texto UTF-8 simple que puede leer en cualquier editor, y generalmente contiene un fragmento del cuerpo: encabezados, párrafos, listas, enlaces, imágenes y estilos en línea creados a través de la interfaz «lo que ves es lo que obtienes» (WYSIWYG) de TinyMCE. No hay compresión, ni cifrado, ni firma binaria. Eso hace que un archivo .whtml esté estrechamente relacionado con una página .html estándar, solo que con un sufijo diferente y a menudo sin las etiquetas envolventes <html> y <body>.
Seguridad y protección
RIESGO: LOWA .whtml file is plain HTML text and cannot run on its own. The only caution is that HTML can contain embedded <script> tags or remote references, so open files from unknown sources in a text editor first rather than rendering them in a browser.
Detalles del formato
en pocas palabras- Generic WYSIWYG HTML output - Some editors and templates informally use
.whtmlto label WYSIWYG-generated HTML fragments; content is still standard HTML. - Web page template naming - Occasionally seen as an ad-hoc suffix for HTML template or partial files in custom build setups.
Programas que abren archivos WHTML
.whtml file to read and edit the raw HTML, with syntax highlighting and a live HTML preview via an extension. .html, then open it in the browser to see the formatted content rendered. .whtml file to edit the HTML source with highlighting and preview. .whtml file in the daedalOS file manager to open it in the built-in TinyMCE editor. Detalles técnicos
especificación profunda| Encoding | UTF-8 text |
| Byte order | Not applicable (text); optional UTF-8 BOM |
| Container | None; raw HTML markup fragment |
| Typical size | A few hundred bytes to tens of kilobytes |
| Structure | A `.whtml` file holds the HTML produced by the TinyMCE rich-text editor inside daedalOS. It stores formatted body content (paragraphs, headings, lists, links, images) with inline styles rather than a complete standalone HTML page. There is no requirement for `<html>`, `<head>`, or `<body>` wrapper tags. |
| Platforms | Web browser (daedalOS), Windows, macOS, Linux |
| Notes | The extension is a naming convention used by daedalOS, Dustin Brett's browser-based desktop environment. In the daedalOS codebase the extension is mapped to the type WysiwygHtmlDocument, opened by the built-in TinyMCE app with generic text editors as a fallback. It is not a formal, registered standard, and mainstream browsers do not associate `.whtml` with HTML rendering by default. |
| Lanzado | 2021 |
| Especificación | github.com |
Conversiones de WHTML
Preguntas y respuestas de la comunidad
preguntado por usuariosAún no hay preguntas; sea el primero en preguntar sobre los archivos WHTML.
Preguntas frecuentes
¿Qué programa abre un archivo WHTML?
.html.¿Es un archivo WHTML lo mismo que un archivo HTML?
.whtml es una convención de nomenclatura utilizada por daedalOS para los documentos guardados desde su aplicación TinyMCE. Renómbrelo a .html y se comportará como una página web normal.¿Por qué mi navegador no abre un archivo .whtml directamente?
.whtml con HTML por defecto, por lo que pueden ofrecer descargarlo en lugar de renderizarlo. Renombre el archivo a .html para ver el contenido formateado.¿Cómo convierto un archivo WHTML a PDF?
.html, ábralo en un navegador, luego use Imprimir y elija Guardar como PDF. TinyMCE dentro de daedalOS también puede exportar el documento abierto.