You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document lists the HTML elements and CSS properties that hyper_render
renders correctly. Anything not listed here is either silently unwrapped
(unknown tags) or ignored (unknown CSS properties).
For content that falls outside this subset, use the fallbackBuilder
parameter to delegate to a WebView or other renderer — see
LIMITATIONS.md for guidance.
Block Elements
Element
Notes
<p>
Paragraph with margin collapse
<div>, <section>, <article>
Generic block containers
<header>, <footer>, <nav>, <aside>
Semantic sections
<h1>–<h6>
Headings with default sizing
<blockquote>
Indented quotation
<pre>
Preserves whitespace (white-space: pre)
<hr>
Horizontal rule
<ul>, <ol>
Unordered and ordered lists
<li>
List items (9 list-style-type values)
<dl>, <dt>, <dd>
Description lists
<table>, <thead>, <tbody>, <tfoot>
Table structure
<tr>
Table row
<th>, <td>
Table cells; colspan and rowspan supported
<caption>
Table caption
<details>, <summary>
Collapsible disclosure widget
<figure>, <figcaption>
Figure with caption
Inline Elements
Element
Notes
<span>
Generic inline container
<a>
Links — href resolved against baseUrl; onLinkTap callback
<strong>, <b>
Bold
<em>, <i>
Italic
<u>
Underline
<s>, <del>
Strikethrough
<ins>, <mark>
Highlight
<code>, <kbd>, <samp>, <var>
Monospace
<sub>, <sup>
Subscript / superscript (basic positioning)
<small>, <q>, <cite>, <abbr>
Semantic inline
<time>
Date/time
<br>
Line break
<ruby>, <rt>, <rp>
CJK ruby annotations (furigana)
Replaced / Atomic Elements
Element
Notes
<img>
Lazy-loaded; alt, width, height, aspect ratio
<video>
Placeholder widget with poster image; no JS playback