1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
// objective: test the various HTML tags supported by doxygen
// check: indexpage.xml
/*! \mainpage
This page demonstrates how various HTML tags are rendered by Doxygen.
## Text Formatting
<b>Bold text using <b></b>
<strong>Bold text using <strong></strong>
<i>Italic text using <i></i>
<em>Emphasized text using <em></em>
<var>Variable using <var></var>
<cite>Citation using <cite></cite>
<u>Underlined text using <u></u>
<ins>Inserted text using <ins></ins>
<s>Strikethrough using <s></s>
<strike>Strikethrough using <strike></strike>
<sub>Subscript using <sub></sub>
<sup>Superscript using <sup></sup>
<code>Code format using <code></code>
<dfn>Typewriter format using <dfn></dfn>
<tt>Typewriter format using <tt></tt>
<kbd>Keyboard text using <kbd></kbd>
<a href="https://www.doxygen.nl">A link to doxygen's homepage</a>
<p>
A forced line break<br>
Continue on the next line
</p>
<a id="anchor_point_id">Anchor point with id</a>
<a name="anchor_point_namw">Anchor point with name</a>
<blockquote>Start of quotation block</blockquote>
<center>Piece of centered text</center>
<hr/>
<dl>
<dt>Description title 1</dt>
<dd>Description item 1</dd>
<dt>Description title 2</dt>
<dd>Description item 2</dd>
</dl>
<img src="https://www.doxygen.nl/manual/doxygen_logo.svg" width="100px">
<details>
<summary>Summary text</summary>
Contents of the details section.
</details>
<div>Text in a div</div>
<span>Text in a span</span>
<h1>Heading level 1</h1>
<h2>Heading level 2</h2>
<h3>Heading level 3</h3>
<h4>Heading level 4</h4>
<h5>Heading level 5</h5>
<h6>Heading level 6</h6>
Table with all tags
<table>
<caption>
Council budget (in £) 2018
</caption>
<thead>
<tr>
<th scope="col">Items</th>
<th scope="col">Expenditure</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Donuts</th>
<td>3,000</td>
</tr>
<tr>
<th scope="row">Stationery</th>
<td>18,000</td>
</tr>
</tbody>
<tfoot>
<tr>
<th scope="row">Totals</th>
<td>21,000</td>
</tr>
</tfoot>
</table>
Table with minimal tags
<table>
<caption>Council budget (in £) 2018</caption>
<tr><th>Items<th scope="col">Expenditure
<tr><th>Donuts<td>3,000
<tr><th>Stationery<td>18,000
<tr><th>Totals<td>21,000
</table>
*/
|