HyperText Markup Language (HTML) is a document encoding format which is typically used both as a markup language as well as a final render format; however, a few documentation platforms store documents in a subset of it, such as XHTML. In all cases, the specific supported tags—and their handling—must be consulted with the vendor’s documentation, given that the HTML specification is vast, and only a small part of it is relevant for describing document semantics.
Example
<h1>This is a level 1 heading</h1>
<h2>This is a level 2 heading</h2>
<p>
This is text in <strong>bold</strong> and <em>italics</em>, and this is an external link to <a href="https://docops.guide">DocOps</a>. Now, some bullet points:
</p>
<ul>
<li>Bullet point 1</li>
<li>Bullet point 2</li>
<li>Bullet point 3</li>
</ul>
© 2022-2024 Ernesto Garbarino | Contact me at ernesto@garba.org