zlacker

[return to "HTML as an Accessible Format for Papers"]
1. billco+gd[view] [source] 2025-12-06 16:42:18
>>el3ctr+(OP)
I don't think HTML is the right approach. HTML is better than PDF, but it is still a format for displaying/rendering.

the actual paper content format should be separated from its rendering.

i.e. it should contain abstract, sections, equations, figures, citations etc. but it shouldn't have font sizes, layout etc.

the viewer platforms then should be able to style the content differently.

◧◩
2. afavou+od[view] [source] 2025-12-06 16:42:49
>>billco+gd
Wouldn’t that be CSS?
◧◩◪
3. billco+9e[view] [source] 2025-12-06 16:48:21
>>afavou+od
no

<div class="abstract-container">

<div class="abstract">

<pre><code> abstract text ... </code></pre>

</div>

<div class="author-list">

<ol>

<li>author one</li>

<li>author two</li>

<ol>

</div>

should be just:

[abstract]

abstract text

[authors]

author one | email | affiliation

author two | email | affiliation

◧◩◪◨
4. panzi+mf[view] [source] 2025-12-06 17:00:17
>>billco+9e
There is <article> <section> <figure> <legend>, but yes, <abstract> and <authors> is missing as such. But there are meta tags for such things. Then there is RDF and Thing. Not quite the same, I know, but it's not completely useless.
◧◩◪◨⬒
5. kevind+Xh[view] [source] 2025-12-06 17:19:30
>>panzi+mf
and you could shim these gaps with custom components, hypothetically
[go to top]