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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="Cherokee,Common,Greek,Han,Hebrew,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>Xml2rfc Vocabulary V3 Elements Combined Test File</title>
<meta content="An Author" name="author">
<meta content="רוני אבן (Roni Even)" name="author">
<meta content="田中花子 様 (Hanako Tanaka)" name="author">
<meta content="No Org" name="author">
<meta content="Bon Aventure" name="author">
<meta content="International Association for Cryptologic Research" name="author">
<meta content="A. Lindgren" name="author">
<meta content="
This is the abstract.
" name="description">
<meta content="xml2rfc 3.22.0" name="generator">
<meta content="elements-00" name="ietf.draft">
<link href="tests/input/elements.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<link href="xml2rfc.css" rel="stylesheet">
<link href="rfc-local.css" rel="stylesheet" type="text/css">
</head>
<body class="xml2rfc">
<script src="metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">Internet-Draft</td>
<td class="center">Xml2rfc Vocabulary V3 Elements</td>
<td class="right">July 2018</td>
</tr></thead>
<tfoot><tr>
<td class="left">Author, et al.</td>
<td class="center">Expires January 13, 2019</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-workgroup">Workgroup:</dt>
<dd class="workgroup">Network Working Group</dd>
<dt class="label-obsoletes">Obsoletes:</dt>
<dd class="obsoletes">
<a href="https://www.rfc-editor.org/rfc/rfc1234" class="eref">1234</a>, <a href="https://www.rfc-editor.org/rfc/rfc5678" class="eref">5678</a>, <a href="https://www.rfc-editor.org/rfc/rfc9012" class="eref">9012</a>, <a href="https://www.rfc-editor.org/rfc/rfc3456" class="eref">3456</a>, <a href="https://www.rfc-editor.org/rfc/rfc7890" class="eref">7890</a> (if approved)</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2018-07-12" class="published">July 12, 2018</time>
</dd>
<dt class="label-intended-status">Intended Status:</dt>
<dd class="intended-status">Informational</dd>
<dt class="label-expires">Expires:</dt>
<dd class="expires"><time datetime="2019-01-13">January 13, 2019</time></dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
<div class="author-name">A. Author</div>
</div>
<div class="author">
<div class="author-name">
<span class="non-ascii">רוני אבן</span> (<span class="ascii">R. Even</span>)</div>
<div class="org">
<span class="non-ascii">וואווי</span> (<span class="ascii">Huawei</span>)</div>
</div>
<div class="author">
<div class="author-name">
<span class="non-ascii">田中花子 様</span> (<span class="ascii">H. Tanaka</span>)</div>
</div>
<div class="author">
<div class="author-name">N. Org</div>
</div>
<div class="author">
<div class="author-name">B. Aventure</div>
<div class="org">Université de Liège</div>
</div>
<div class="author">
<div class="org">International Association for Cryptologic Research</div>
</div>
<div class="author">
<div class="author-name">A. Lindgren</div>
</div>
</dd>
</dl>
</div>
<h1 id="title">Xml2rfc Vocabulary V3 Elements<br>Combined Test File</h1>
<div id="t-abstract">
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">This is the abstract.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="status-of-memo">
<section id="section-boilerplate.1">
<h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
</h2>
<p id="section-boilerplate.1-1">
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
Internet-Drafts are working documents of the Internet Engineering Task
Force (IETF). Note that other groups may also distribute working
documents as Internet-Drafts. The list of current Internet-Drafts is
at <span><a href="https://datatracker.ietf.org/drafts/current/">https://datatracker.ietf.org/drafts/current/</a></span>.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-4">
This Internet-Draft will expire on January 13, 2019.<a href="#section-boilerplate.1-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
<h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
</h2>
<p id="section-boilerplate.2-1">
Copyright (c) 2018 IETF Trust and the persons identified as the
document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with
respect to this document.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
<a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
</h2>
<nav class="toc"><ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.1">
<p id="section-toc.1-1.1.1" class="keepWithNext"><a href="#section-1" class="auto internal xref">1</a>. <a href="#name-rfc-2119-key-words" class="internal xref">RFC 2119 key words</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.2">
<p id="section-toc.1-1.2.1" class="keepWithNext"><a href="#section-2" class="auto internal xref">2</a>. <a href="#name-citations" class="internal xref">Citations</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1" class="keepWithNext"><a href="#section-3" class="auto internal xref">3</a>. <a href="#name-unordered-list-with-sub-ele" class="internal xref">Unordered list with sub-elements</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.4">
<p id="section-toc.1-1.4.1"><a href="#section-4" class="auto internal xref">4</a>. <a href="#name-ordered-list-with-sub-eleme" class="internal xref">Ordered list with sub-elements</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.5">
<p id="section-toc.1-1.5.1"><a href="#section-5" class="auto internal xref">5</a>. <a href="#name-definition-list-with-sub-el" class="internal xref">Definition list with sub-elements</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.6">
<p id="section-toc.1-1.6.1"><a href="#section-6" class="auto internal xref">6</a>. <a href="#name-table" class="internal xref">Table</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7">
<p id="section-toc.1-1.7.1"><a href="#section-7" class="auto internal xref">7</a>. <a href="#name-unicode-literals" class="internal xref">Unicode Literals</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7.2.1">
<p id="section-toc.1-1.7.2.1.1"><a href="#section-7.1" class="auto internal xref">7.1</a>. <a href="#name-single-characters" class="internal xref">Single Characters</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.7.2.2">
<p id="section-toc.1-1.7.2.2.1"><a href="#section-7.2" class="auto internal xref">7.2</a>. <a href="#name-character-strings" class="internal xref">Character Strings</a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.8">
<p id="section-toc.1-1.8.1"><a href="#section-8" class="auto internal xref">8</a>. <a href="#name-irregular-date-specificatio" class="internal xref">Irregular date specifications</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-9" class="auto internal xref">9</a>. <a href="#name-aside-word-joiner-and-break" class="internal xref">Aside, Word Joiner, and Break</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.10">
<p id="section-toc.1-1.10.1"><a href="#section-10" class="auto internal xref">10</a>. <a href="#name-section-title-test-1" class="internal xref">Section title test 1</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#section-11" class="auto internal xref">11</a>. <a href="#name-section-level-h2" class="internal xref">Section level h2</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.11.2.1">
<p id="section-toc.1-1.11.2.1.1"><a href="#section-11.1" class="auto internal xref">11.1</a>. <a href="#name-section-level-h3" class="internal xref">Section level h3</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.11.2.1.2.1">
<p id="section-toc.1-1.11.2.1.2.1.1"><a href="#section-11.1.1" class="auto internal xref">11.1.1</a>. <a href="#name-section-level-h4" class="internal xref">Section level h4</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.12">
<p id="section-toc.1-1.12.1"><a href="#section-12" class="auto internal xref">12</a>. <a href="#name-eref-brackets" class="internal xref">Eref brackets</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.13">
<p id="section-toc.1-1.13.1"><a href="#section-13" class="auto internal xref">13</a>. <a href="#name-sourcecode-indentation" class="internal xref">Sourcecode indentation</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.14">
<p id="section-toc.1-1.14.1"><a href="#section-14" class="auto internal xref">14</a>. <a href="#name-tables-inside-lists" class="internal xref">Tables inside lists</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.15">
<p id="section-toc.1-1.15.1"><a href="#section-15" class="auto internal xref">15</a>. <a href="#name-wide-artwork" class="internal xref">Wide artwork</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.16">
<p id="section-toc.1-1.16.1"><a href="#section-16" class="auto internal xref">16</a>. <a href="#name-sup-and-sub" class="internal xref">Sup and sub</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.17">
<p id="section-toc.1-1.17.1"><a href="#section-17" class="auto internal xref"></a><a href="#name-unnumbered-section" class="internal xref">Unnumbered section</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.18">
<p id="section-toc.1-1.18.1"><a href="#section-18" class="auto internal xref"></a><a href="#name-references" class="internal xref">References</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.18.2.1">
<p id="section-toc.1-1.18.2.1.1"><a href="#section-18.1" class="auto internal xref"></a><a href="#name-normative-references" class="internal xref">Normative References</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.18.2.2">
<p id="section-toc.1-1.18.2.2.1"><a href="#section-18.2" class="auto internal xref"></a><a href="#name-informative-references" class="internal xref">Informative References</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.18.2.2.2.1">
<p id="section-toc.1-1.18.2.2.2.1.1"><a href="#section-18.2.1" class="auto internal xref"></a><a href="#name-cms-references" class="internal xref">CMS References</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.18.2.2.2.2">
<p id="section-toc.1-1.18.2.2.2.2.1"><a href="#section-18.2.2" class="auto internal xref"></a><a href="#name-ess-references" class="internal xref">ESS References</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.18.2.2.2.3">
<p id="section-toc.1-1.18.2.2.2.3.1"><a href="#section-18.2.3" class="auto internal xref"></a><a href="#name-mime-spec-references" class="internal xref">MIME-SPEC References</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.18.2.2.2.4">
<p id="section-toc.1-1.18.2.2.2.4.1"><a href="#section-18.2.4" class="auto internal xref"></a><a href="#name-other-references" class="internal xref">Other References</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.19">
<p id="section-toc.1-1.19.1"><a href="#appendix-A" class="auto internal xref">Appendix A</a>. <a href="#name-some-back-matter" class="internal xref">Some Back Matter</a></p>
<ul class="compact toc ulBare ulEmpty">
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.19.2.1">
<p id="section-toc.1-1.19.2.1.1"><a href="#appendix-A.1" class="auto internal xref">A.1</a>. <a href="#name-contributors" class="internal xref">Contributors</a></p>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.19.2.2">
<p id="section-toc.1-1.19.2.2.1"><a href="#appendix-A.2" class="auto internal xref">A.2</a>. <a href="#name-arbitrary-superscript-in-se" class="internal xref">Arbitrary<sup>superscript</sup> in section <em>title</em></a></p>
</li>
</ul>
</li>
<li class="compact toc ulBare ulEmpty" id="section-toc.1-1.20">
<p id="section-toc.1-1.20.1"><a href="#appendix-B" class="auto internal xref"></a><a href="#name-authors-addresses" class="internal xref">Authors' Addresses</a></p>
</li>
</ul>
</nav>
</section>
</div>
<section id="section-1">
<h2 id="name-rfc-2119-key-words">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-rfc-2119-key-words" class="section-name selfRef">RFC 2119 key words</a>
</h2>
<span id="iref-foo-1" class="iref"></span>
<p id="section-1-1">
<span id="iref-bar-2" class="iref"></span>The key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>",
"<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>", "<span class="bcp14">SHALL NOT</span>",
"<span class="bcp14">SHOULD</span>", "<span class="bcp14">SHOULD NOT</span>",
"<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>", "<span class="bcp14">MAY</span>",
and "<span class="bcp14">OPTIONAL</span>" in this document are to be interpreted as described in
BCP 14 <span>[<a href="#RFC2119" class="cite xref">RFC2119</a>]</span> <span>[<a href="#RFC8174" class="cite xref">RFC8174</a>]</span> when, and only when, they
appear in all capitals, as shown here.<a href="#section-1-1" class="pilcrow">¶</a></p>
</section>
<section id="section-2">
<h2 id="name-citations">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-citations" class="section-name selfRef">Citations</a>
</h2>
<p id="section-2-1">
This section contains a bunch of citations, in order to test citation formats and also
in order to refer to each of the entries in
the <a href="#references-section" class="auto internal xref">Section 18</a>.<a href="#section-2-1" class="pilcrow">¶</a></p>
<p id="section-2-2"> Citations of References:<a href="#section-2-2" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-3.1">
Format="default": <span>[<a href="#RFC7997" class="cite xref">RFC7997</a>]</span><a href="#section-2-3.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-3.2">
Format="title": <a href="#RFC8174" class="internal xref">Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</a><a href="#section-2-3.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-3.3">
Format="counter": Not supported<a href="#section-2-3.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-3.4">
Format="none": <a href="#RFC5083" class="auto internal xref"></a><a href="#section-2-3.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-4"> Citations of References with explicit text:<a href="#section-2-4" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-5.1">
Text and format="default": <span><a href="#RFC7997" class="internal xref">Text</a> [<a href="#RFC7997" class="cite xref">RFC7997</a>]</span><a href="#section-2-5.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-5.2">
Text and format="title": <span><a href="#RFC8174" class="internal xref">Text</a> (<a href="#RFC8174" class="internal xref">Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</a>)</span><a href="#section-2-5.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-5.3">
Text and format="counter": Not supported<a href="#section-2-5.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-5.4">
Text and format="none": <a href="#RFC5083" class="internal xref">Text</a><a href="#section-2-5.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-6"> Citations of multiple Sections in References, using sectionFormat="bare":<a href="#section-2-6" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-7.1">
No text and no format attribute: Sections
<a href="https://rfc-editor.org/rfc/rfc7997#section-3.2" class="relref">3.2</a> and
<a href="https://rfc-editor.org/rfc/rfc7997#section-3.3" class="relref">3.3</a> of
<span>[<a href="#RFC7997" class="cite xref">RFC7997</a>]</span>.<a href="#section-2-7.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-7.2">
No text and format="default": Sections
<a href="https://rfc-editor.org/rfc/rfc7997#section-3.2" class="relref">3.2</a> and
<a href="https://rfc-editor.org/rfc/rfc7997#section-3.3" class="relref">3.3</a> of
<span>[<a href="#RFC7997" class="cite xref">RFC7997</a>]</span>.<a href="#section-2-7.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-7.3">
No text and format="title": Not meaningful<a href="#section-2-7.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-7.4">
No text and format="counter": Not meaningful<a href="#section-2-7.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-7.5">
No text and format="none": Not meaningful<a href="#section-2-7.5" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-8"> Citations of multiple Sections in References, using text and sectionFormat="bare":<a href="#section-2-8" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-9.1">
Text and format="default": Sections
<span><a href="https://rfc-editor.org/rfc/rfc7997#section-3.2" class="relref">3.2</a> (<a href="https://rfc-editor.org/rfc/rfc7997#section-3.2" class="relref">Person Names</a>)</span> and
<span><a href="https://rfc-editor.org/rfc/rfc7997#section-3.3" class="relref">3.3</a> (<a href="https://rfc-editor.org/rfc/rfc7997#section-3.3" class="relref">Company Names</a>)</span> and
<span><a href="https://rfc-editor.org/rfc/rfc7997#section-3.3" class="relref">3.3</a> (<a href="https://rfc-editor.org/rfc/rfc7997#section-3.3" class="relref">a <em>lot</em> <strong>more</strong> information</a>)</span> of
<span>[<a href="#RFC7997" class="cite xref">RFC7997</a>]</span>.<a href="#section-2-9.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-9.2">
Text and format="title": Not meaningful<a href="#section-2-9.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-9.3">
Text and format="counter": Not meaningful<a href="#section-2-9.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-9.4">
Text and format="none": Not meaningful<a href="#section-2-9.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-10"> References to Abstract, with explicit text:<a href="#section-2-10" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-11.1">
Text and format="default": <span><a href="#t-abstract" class="internal xref">Text</a> (<a href="#t-abstract" class="auto internal xref">Abstract</a>)</span><a href="#section-2-11.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-11.2">
Text and format="title": <span><a href="#t-abstract" class="internal xref">Text</a> (<a href="#t-abstract" class="internal xref">Abstract</a>)</span><a href="#section-2-11.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-12"> References to Abstract:<a href="#section-2-12" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-13.1">
Format="default": <a href="#t-abstract" class="auto internal xref">Abstract</a><a href="#section-2-13.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-13.2">
Format="title": <a href="#t-abstract" class="internal xref">Abstract</a><a href="#section-2-13.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-14"> References to Sections, with explicit text:<a href="#section-2-14" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-15.1">
Text and format="default": <span><a href="#ul-with-subelements" class="internal xref">Text</a> (<a href="#ul-with-subelements" class="auto internal xref">Section 3</a>)</span><a href="#section-2-15.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-15.2">
Text and format="title": <span><a href="#ul-with-subelements" class="internal xref">Text</a> (<a href="#ul-with-subelements" class="internal xref">Unordered list with sub-elements</a>)</span><a href="#section-2-15.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-15.3">
Text and format="counter": <span><a href="#ul-with-subelements" class="internal xref">Text</a> (<a href="#ul-with-subelements" class="auto internal xref">3</a>)</span><a href="#section-2-15.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-15.4">
Text and format="none": <a href="#ul-with-subelements" class="internal xref">Text</a><a href="#section-2-15.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-16"> References to Sections:<a href="#section-2-16" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-17.1">
Format="default": <a href="#ul-with-subelements" class="auto internal xref">Section 3</a><a href="#section-2-17.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-17.2">
Format="title": <a href="#ul-with-subelements" class="internal xref">Unordered list with sub-elements</a><a href="#section-2-17.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-17.3">
Format="counter": <a href="#ul-with-subelements" class="auto internal xref">3</a><a href="#section-2-17.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-17.4">
Format="none": <a href="#ul-with-subelements" class="auto internal xref"></a><a href="#section-2-17.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-18"> References to Appendix:<a href="#section-2-18" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-19.1">
Format="default": <a href="#back-matter" class="auto internal xref">Appendix A</a><a href="#section-2-19.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-19.2">
Format="title": <a href="#back-matter" class="internal xref">Some Back Matter</a><a href="#section-2-19.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-19.3">
Format="counter": <a href="#back-matter" class="auto internal xref">A</a><a href="#section-2-19.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-19.4">
Format="none": <a href="#back-matter" class="auto internal xref"></a><a href="#section-2-19.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-20">References to Comments:<a href="#section-2-20" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-21.1">
Format="default": <a href="#cited-comment" class="auto internal xref">Comment cited-comment</a><a href="#section-2-21.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-21.2">
Format="title": <a href="#cited-comment" class="internal xref">cited-comment</a><a href="#section-2-21.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-21.3">
Format="counter": (not allowed)<a href="#section-2-21.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-21.4">
Format="none": <a href="#cited-comment" class="auto internal xref"></a><a href="#section-2-21.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-2-22"><span class="cref" id="cited-comment">This comment is to be cited.</span><a href="#section-2-22" class="pilcrow">¶</a></p>
<p id="section-2-23">
These references should be present:
<span>[<a href="#RFC5652" class="cite xref">RFC5652</a>]</span>
<span>[<a href="#RFC2634" class="cite xref">RFC2634</a>]</span>
<span>[<a href="#RFC5035" class="cite xref">RFC5035</a>]</span>
<span>[<a href="#RFC2045" class="cite xref">RFC2045</a>]</span>
<span>[<a href="#RFC2046" class="cite xref">RFC2046</a>]</span>
<span>[<a href="#RFC2047" class="cite xref">RFC2047</a>]</span>
<span>[<a href="#RFC2049" class="cite xref">RFC2049</a>]</span>
<span>[<a href="#RFC4289" class="cite xref">RFC4289</a>]</span>
<span>[<a href="#RFC6838" class="cite xref">RFC6838</a>]</span><a href="#section-2-23" class="pilcrow">¶</a></p>
</section>
<div id="ul-with-subelements">
<section id="section-3">
<h2 id="name-unordered-list-with-sub-ele">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-unordered-list-with-sub-ele" class="section-name selfRef">Unordered list with sub-elements</a>
</h2>
<ul class="normal">
<li id="section-3-1.1" class="normal">
<div class="normal" id="ul-li-item1">
Unordered list, first bullet. [<span class="bcp14">MUST</span>], [<span class="bcp14">MUST NOT</span>]<a href="#ul-li-item1" class="pilcrow">¶</a>
</div>
</li>
<li class="normal" id="section-3-1.2">
Unordered list, second bullet. Text only. Octavio fuit, cum illam severitatem in eo non arbitrantur. erunt etiam, et ii quidem eruditi Graecis litteris, contemnentes Latinas, qui se plane Graecum dici velit, ut a Scaevola est praetore salutatus Athenis Albucius. In physicis plurimum posuit. ea scientia et verborum vis et natura orationis et consequentium repugnantiumve ratio potest perspici.<a href="#section-3-1.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-1.3">
<p id="section-3-1.3.1">
Unordered list, third bullet, element t. Quid? si nos non interpretum fungimur munere, sed tuemur ea, quae audiebamus, conferebamus, neque erat umquam controversia, quid ego intellegerem, sed quid probarem. Extremum autem esse bonorum eum voluptate vivere. Sic faciam igitur, inquit: unam rem explicabo, eamque maximam, de physicis alias, et quidem locis pluribus.<a href="#section-3-1.3.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-3-1.3.2">
<pre>
Unordered list, third bullet, second element:
+-------------------------------------------+
| |
| Artwork |
| |
+-------------------------------------------+
</pre><a href="#section-3-1.3.2" class="pilcrow">¶</a>
</div>
<span class="break"></span><dl class="dlParallel" id="section-3-1.3.3">
<dt id="section-3-1.3.3.1">Unordered list, third bullet, third element: Definition list, element dt.</dt>
<dd style="margin-left: 8.0em" id="section-3-1.3.3.2">
<br>Element dd. Indent 16. Nisi mihi Phaedrum, inquam, tu mentitum aut Zenonem misisti.<a href="#section-3-1.3.3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlNewline" id="section-3-1.3.4">
<dt id="section-3-1.3.4.1">Unordered list, third bullet, third element: Definition list, element dt.</dt>
<dd style="margin-left: 8.0em" id="section-3-1.3.4.2">
<br>Element dd. Indent 16. Nisi mihi Phaedrum, inquam, tu mentitum aut Zenonem misisti.<a href="#section-3-1.3.4.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span id="name-some-figure-name"></span><figure id="figure-1">
<div class="alignLeft art-text artwork" id="section-3-1.3.5.1">
<pre>
Unordered list, third bullet, fourth element:
Figure
Figure
Figure
</pre>
</div>
<figcaption><a href="#figure-1" class="selfRef">Figure 1</a>:
<a href="#name-some-figure-name" class="selfRef">Some figure name</a>
</figcaption></figure>
<span class="break"></span><dl class="olPercent" id="section-3-1.3.6">
<dt>REQ1:</dt>
<dd id="section-3-1.3.6.1" style="margin-left: 4.0em">
<div id="ol-li-item1">Unordered list, third bullet, fifth element: Ordered list, element li. Text only. Indent="8"<a href="#ol-li-item1" class="pilcrow">¶</a>
</div>
</dd>
<dd class="break"></dd>
<dt>REQ2:</dt>
<dd style="margin-left: 4.0em" id="section-3-1.3.6.2">
<p id="section-3-1.3.6.2.1">
Unordered list, third bullet, fifth element: Ordered list, element t. Indent="8". Nam cum ad me de virtute misisti. Quae est enim contra Cyrenaicos satis acute, nihil ad iucunde vivendum reperiri posse, quod coniunctione tali sit aptius. Quae etsi mihi nullo modo nec divelli nec distrahi possint, sic de iustitia iudicandum est, quae non modo non impediri rationem amicitiae, si summum bonum diceret, primum in eo essent.<a href="#section-3-1.3.6.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="olPercent" id="section-3-1.3.6.2.2">
<dt>REQ2:1</dt>
<dd id="section-3-1.3.6.2.2.1">Sublist with '%p' parent counter element in the list counter, item one<a href="#section-3-1.3.6.2.2.1" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt>REQ2:2</dt>
<dd id="section-3-1.3.6.2.2.2">Item two.<a href="#section-3-1.3.6.2.2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt>REQ2:3</dt>
<dd id="section-3-1.3.6.2.2.3">Item three.<a href="#section-3-1.3.6.2.2.3" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</dd>
<dd class="break"></dd>
</dl>
<div class="sourcecode" id="section-3-1.3.7">
<pre><CODE BEGINS> file "sample.py"
# Unordered list, third bullet, sixth element
A = 1; # Non-ASCII comment: €
<CODE ENDS></pre><a href="#section-3-1.3.7" class="pilcrow">¶</a>
</div>
<ul class="normal">
<li class="normal" id="section-3-1.3.8.1">Unordered list, third bullet, seventh element: Unordered list, element li. Text only.<a href="#section-3-1.3.8.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-1.3.8.2">
<p id="section-3-1.3.8.2.1">
Element t. Atque ut odia, invidiae, despicationes adversantur voluptatibus, sic amicitiae non posse iucunde vivi, nisi sapienter, honeste iusteque vivatur, nec sapienter, honeste, iuste, nisi iucunde. Democritea dicit perpauca mutans, sed ita, ut ea, quae audiebamus, conferebamus, neque erat umquam controversia, quid ego intellegerem, sed quid probarem.<a href="#section-3-1.3.8.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
<p id="section-3-1.3.9">
Unordered list, third bullet, eight and ninth element: Text and SVG Artwork:<a href="#section-3-1.3.9" class="pilcrow">¶</a></p>
<div id="section-3-1.3.10">
<div class="alignRight art-svg artwork" id="section-3-1.3.10.1">
<svg xmlns="http://www.w3.org/2000/svg" width="175" height="57" viewBox="0 0 175 57">
<path d="M60,2l12,12l-12,12l-12-12zM88,2l12,12l-12,12l-12-12zM116,2l12,12l-12,12l-12-12zM18,16l12,12l-12,12l-12-12zM46,16l12,12l-12,12l-12-12zM74,16l12,12l-12,12l-12-12zM102,16l12,12l-12,12l-12-12zM130,16l12,12l-12,12l-12-12zM158,16l12,12l-12,12l-12-12zM60,30l12,12l-12,12l-12-12zM88,30l12,12l-12,12l-12-12zM116,30l12,12l-12,12l-12-12z" fill="black"></path>
<path stroke="black" stroke-width="0.5" d="M7,27h26l13,13l14-14l14,14l28-28l14,14l14-14l15,15h26v3h-27l-14-14l-14,14l-14-14l-28,28l-14-14l-14,14l-14-14h-25z" fill="white"></path>
<path d="M3,26h5v5h-5zM168,26h5v5h-5z"></path>
</svg><a href="#section-3-1.3.10.1" class="pilcrow">¶</a>
</div>
</div>
</li>
<li class="normal" id="section-3-1.4">
<p id="section-3-1.4.1">Artset include with <xi:include><a href="#section-3-1.4.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-svg artwork" id="section-3-1.4.2">
<svg xmlns="http://www.w3.org/2000/svg" width="175" height="57" viewBox="0 0 175 57">
<path d="M60,2l12,12l-12,12l-12-12zM88,2l12,12l-12,12l-12-12zM116,2l12,12l-12,12l-12-12zM18,16l12,12l-12,12l-12-12zM46,16l12,12l-12,12l-12-12zM74,16l12,12l-12,12l-12-12zM102,16l12,12l-12,12l-12-12zM130,16l12,12l-12,12l-12-12zM158,16l12,12l-12,12l-12-12zM60,30l12,12l-12,12l-12-12zM88,30l12,12l-12,12l-12-12zM116,30l12,12l-12,12l-12-12z" fill="black"></path>
<path stroke="black" stroke-width="0.5" d="M7,27h26l13,13l14-14l14,14l28-28l14,14l14-14l15,15h26v3h-27l-14-14l-14,14l-14-14l-28,28l-14-14l-14,14l-14-14h-25z" fill="white"></path>
<path d="M3,26h5v5h-5zM168,26h5v5h-5z"></path>
</svg><a href="#section-3-1.4.2" class="pilcrow">¶</a>
</div>
</li>
<li class="normal" id="section-3-1.5">
<p id="section-3-1.5.1">Unicode SVG rendering test<a href="#section-3-1.5.1" class="pilcrow">¶</a></p>
<div class="alignCenter art-svg artwork" id="section-3-1.5.2">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 64">
<path d="M 8,16 L 8,48" fill="none" stroke="black"></path>
<path d="M 64,16 L 64,48" fill="none" stroke="black"></path>
<path d="M 8,16 L 64,16" fill="none" stroke="black"></path>
<path d="M 8,48 L 64,48" fill="none" stroke="black"></path>
<g class="text">
<text y="36" x="13">⊕⊖⊗⊘</text>
</g>
</svg><a href="#section-3-1.5.2" class="pilcrow">¶</a>
</div>
</li>
</ul>
</section>
</div>
<section id="section-4">
<h2 id="name-ordered-list-with-sub-eleme">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-ordered-list-with-sub-eleme" class="section-name selfRef">Ordered list with sub-elements</a>
</h2>
<ol start="1" type="1" class="normal type-1" id="section-4-1">
<li style="padding-left: 1.0em;" id="section-4-1.1">
Ordered list, first bullet. Indent="6".<a href="#section-4-1.1" class="pilcrow">¶</a>
</li>
<li style="padding-left: 1.0em;" id="section-4-1.2">
Ordered list, second bullet. Indent="6". Text only. Octavio fuit, cum illam severitatem in eo non arbitrantur. erunt etiam, et ii quidem eruditi Graecis litteris, contemnentes Latinas, qui se plane Graecum dici velit, ut a Scaevola est praetore salutatus Athenis Albucius. In physicis plurimum posuit. ea scientia et verborum vis et natura orationis et consequentium repugnantiumve ratio potest perspici.<a href="#section-4-1.2" class="pilcrow">¶</a>
</li>
</ol>
<ol start="3" type="1" class="normal type-1" id="section-4-2">
<li id="section-4-2.1">
<p id="section-4-2.1.1">
Ordered list, third bullet, element t. Quid? si nos non interpretum fungimur munere, sed tuemur ea, quae audiebamus, conferebamus, neque erat umquam controversia, quid ego intellegerem, sed quid probarem. Extremum autem esse bonorum eum voluptate vivere. Sic faciam igitur, inquit: unam rem explicabo, eamque maximam, de physicis alias, et quidem locis pluribus.<a href="#section-4-2.1.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-4-2.1.2">
<pre>
Ordered list, third bullet, second element:
+-------------------------------------------+
| |
| Artwork |
| |
+-------------------------------------------+
</pre><a href="#section-4-2.1.2" class="pilcrow">¶</a>
</div>
<span class="break"></span><dl class="dlParallel" id="section-4-2.1.3">
<dt id="section-4-2.1.3.1">Ordered list, third bullet, third element: Definition list, element dt.</dt>
<dd style="margin-left: 1.5em" id="section-4-2.1.3.2">
<br>Element dd. Nisi mihi Phaedrum, inquam, tu mentitum aut Zenonem misisti.<a href="#section-4-2.1.3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span id="name-some-figure-name-2"></span><figure id="figure-2">
<div class="alignLeft art-text artwork" id="section-4-2.1.4.1">
<pre>
Ordered list, third bullet, fourth element:
Figure
Figure
Figure
</pre>
</div>
<figcaption><a href="#figure-2" class="selfRef">Figure 2</a>:
<a href="#name-some-figure-name-2" class="selfRef">Some figure name</a>
</figcaption></figure>
<ol start="1" type="1" class="normal type-1" id="section-4-2.1.5">
<li id="section-4-2.1.5.1">Ordered list, third bullet, fifth element: Ordered list, element li. Text only.<a href="#section-4-2.1.5.1" class="pilcrow">¶</a>
</li>
<li id="section-4-2.1.5.2">
<p id="section-4-2.1.5.2.1">
Ordered list, third bullet, fifth element: Ordered list, element t. Nam cum ad me de virtute misisti. Quae est enim contra Cyrenaicos satis acute, nihil ad iucunde vivendum reperiri posse, quod coniunctione tali sit aptius. Quae etsi mihi nullo modo nec divelli nec distrahi possint, sic de iustitia iudicandum est, quae non modo non impediri rationem amicitiae, si summum bonum diceret, primum in eo essent.<a href="#section-4-2.1.5.2.1" class="pilcrow">¶</a></p>
</li>
</ol>
<div class="sourcecode" id="section-4-2.1.6">
<pre>
# Ordered list, third bullet, sixth element
A = 1;
</pre><a href="#section-4-2.1.6" class="pilcrow">¶</a>
</div>
<ul class="normal">
<li class="normal" id="section-4-2.1.7.1">Ordered list, third bullet, seventh element: Unordered list, element li. Text only.<a href="#section-4-2.1.7.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4-2.1.7.2">
<p id="section-4-2.1.7.2.1">
Element t. Atque ut odia, invidiae, despicationes adversantur voluptatibus, sic amicitiae non posse iucunde vivi, nisi sapienter, honeste iusteque vivatur, nec sapienter, honeste, iuste, nisi iucunde. Democritea dicit perpauca mutans, sed ita, ut ea, quae audiebamus, conferebamus, neque erat umquam controversia, quid ego intellegerem, sed quid probarem.
See <a href="#back-matter" class="auto internal xref">Appendix A</a>, <span><a href="https://datatracker.ietf.org/doc/html/draft-levkowetz-xml2rfc-v3-implementation-notes-13#rfc-7991" class="relref">Section 3.1</a> of [<a href="#I-D.levkowetz-xml2rfc-v3-implementation-notes" class="cite xref">I-D.levkowetz-xml2rfc-v3-implementation-notes</a>]</span>
and also <span><a href="https://rfc-editor.org/rfc/rfc8174#appendix-A.1" class="relref">Appendix A.1</a> of Key Words Case Ambiguity [<a href="#RFC8174" class="cite xref">RFC8174</a>]</span> /
<span>Key Words Case Ambiguity [<a href="#RFC8174" class="cite xref">RFC8174</a>], <a href="https://rfc-editor.org/rfc/rfc8174#appendix-A.1" class="relref">Appendix A.1</a></span> /
<span>Key Words Case Ambiguity [<a href="#RFC8174" class="cite xref">RFC8174</a>] (<a href="https://rfc-editor.org/rfc/rfc8174#appendix-A.1" class="relref">Appendix A.1</a>)</span>.<a href="#section-4-2.1.7.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li id="section-4-2.2">
<span class="break"></span><dl class="olPercent" id="section-4-2.2.1">
<dt>4.1</dt>
<dd id="section-4-2.2.1.1">Sublist with '%p' parent counter element in the list counter, item one<a href="#section-4-2.2.1.1" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt>4.2</dt>
<dd id="section-4-2.2.1.2">Item two.<a href="#section-4-2.2.1.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt>4.3</dt>
<dd id="section-4-2.2.1.3">Item three.<a href="#section-4-2.2.1.3" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</li>
</ol>
</section>
<section id="section-5">
<h2 id="name-definition-list-with-sub-el">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-definition-list-with-sub-el" class="section-name selfRef">Definition list with sub-elements</a>
</h2>
<span class="break"></span><dl class="dlParallel" id="section-5-1">
<dt id="section-5-1.1">
<div id="dl-dt-term1">Term 1</div>
</dt>
<dd id="section-5-1.2" style="margin-left: 1.5em">
<div id="dl-dd-def1">
Definition list, first bullet.<a href="#dl-dd-def1" class="pilcrow">¶</a>
</div>
</dd>
<dd class="break"></dd>
<dt id="section-5-1.3">Term 2</dt>
<dd style="margin-left: 1.5em" id="section-5-1.4">
Definition list, second bullet. Text only. Octavio fuit, cum illam severitatem in eo non arbitrantur. erunt etiam, et ii quidem eruditi Graecis litteris, contemnentes Latinas, qui se plane Graecum dici velit, ut a Scaevola est praetore salutatus Athenis Albucius. In physicis plurimum posuit. ea scientia et verborum vis et natura orationis et consequentium repugnantiumve ratio potest perspici.<a href="#section-5-1.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5-1.5">Term 3</dt>
<dd style="margin-left: 1.5em" id="section-5-1.6">
<p id="section-5-1.6.1">
Definition list, third bullet, element t. Quid? si nos non interpretum fungimur munere, sed tuemur ea, quae audiebamus, conferebamus, neque erat umquam controversia, quid ego intellegerem, sed quid probarem. Extremum autem esse bonorum eum voluptate vivere. Sic faciam igitur, inquit: unam rem explicabo, eamque maximam, de physicis alias, et quidem locis pluribus.<a href="#section-5-1.6.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-5-1.6.2">
<pre>
Definition list, third bullet, second element:
+-------------------------------------------+
| |
| Artwork |
| |
+-------------------------------------------+
</pre><a href="#section-5-1.6.2" class="pilcrow">¶</a>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5-1.6.3">
<dt id="section-5-1.6.3.1">Definition list, third bullet, third element: Definition list, element dt.</dt>
<dd style="margin-left: 1.5em" id="section-5-1.6.3.2">
<br>Element dd. Nisi mihi Phaedrum, inquam, tu mentitum aut Zenonem misisti.<a href="#section-5-1.6.3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span id="name-some-figure-name-3"></span><figure id="figure-3">
<div class="alignLeft art-text artwork" id="section-5-1.6.4.1">
<pre>
Definition list, third bullet, fourth element:
Figure
Figure
Figure
</pre>
</div>
<figcaption><a href="#figure-3" class="selfRef">Figure 3</a>:
<a href="#name-some-figure-name-3" class="selfRef">Some figure name</a>
</figcaption></figure>
<ol start="1" type="1" class="normal type-1" id="section-5-1.6.5">
<li id="section-5-1.6.5.1">Definition list, third bullet, fifth element: Ordered list, element li. Text only.<a href="#section-5-1.6.5.1" class="pilcrow">¶</a>
</li>
<li id="section-5-1.6.5.2">
<p id="section-5-1.6.5.2.1">
Definition list, third bullet, fifth element: Ordered list, element t. Nam cum ad me de virtute misisti. Quae est enim contra Cyrenaicos satis acute, nihil ad iucunde vivendum reperiri posse, quod coniunctione tali sit aptius. Quae etsi mihi nullo modo nec divelli nec distrahi possint, sic de iustitia iudicandum est, quae non modo non impediri rationem amicitiae, si summum bonum diceret, primum in eo essent.<a href="#section-5-1.6.5.2.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5-1.6.5.2.2.1">UL within OL within DL, item one<a href="#section-5-1.6.5.2.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5-1.6.5.2.2.2">UL within OL within DL, item two<a href="#section-5-1.6.5.2.2.2" class="pilcrow">¶</a>
</li>
</ul>
<ul class="normal ulEmpty">
<li class="normal ulEmpty" id="section-5-1.6.5.2.3.1">UL within OL within DL, empty="true"; item one<a href="#section-5-1.6.5.2.3.1" class="pilcrow">¶</a>
</li>
<li class="normal ulEmpty" id="section-5-1.6.5.2.3.2">UL within OL within DL, empty="true"; item two<a href="#section-5-1.6.5.2.3.2" class="pilcrow">¶</a>
</li>
</ul>
<ul class="normal ulBare ulEmpty">
<li class="normal ulBare ulEmpty" id="section-5-1.6.5.2.4.1">UL within OL within DL, bare="true"; item one<a href="#section-5-1.6.5.2.4.1" class="pilcrow">¶</a>
</li>
<li class="normal ulBare ulEmpty" id="section-5-1.6.5.2.4.2">UL within OL within DL, bare="true"; item two<a href="#section-5-1.6.5.2.4.2" class="pilcrow">¶</a>
</li>
</ul>
</li>
</ol>
<div class="sourcecode" id="section-5-1.6.6">
<pre>
# Definition list, third bullet, sixth element
A = 1;
</pre><a href="#section-5-1.6.6" class="pilcrow">¶</a>
</div>
<ul class="normal">
<li class="normal" id="section-5-1.6.7.1">Definition list, third bullet, seventh element: Unordered list, element li. Text only.<a href="#section-5-1.6.7.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5-1.6.7.2">
<p id="section-5-1.6.7.2.1">
Element t. Atque ut odia, invidiae, despicationes adversantur voluptatibus, sic amicitiae non posse iucunde vivi, nisi sapienter, honeste iusteque vivatur, nec sapienter, honeste, iuste, nisi iucunde. Democritea dicit perpauca mutans, sed ita, ut ea, quae audiebamus, conferebamus, neque erat umquam controversia, quid ego intellegerem, sed quid probarem.<a href="#section-5-1.6.7.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
<p id="section-5-1.6.8">Definition list, third bullet, eight element, t. Quid? si nos non interpretum fungimur munere, sed tuemur ea, quae audiebamus, conferebamus, neque erat umquam controversia, quid ego intellegerem, sed quid probarem. Extremum autem esse bonorum eum voluptate vivere. Sic faciam igitur, inquit: unam rem explicabo, eamque maximam, de physicis alias, et quidem locis pluribus.<a href="#section-5-1.6.8" class="pilcrow">¶</a></p>
<p id="section-5-1.6.9">Definition list, third bullet, ninth element, t. Quid? si nos non interpretum fungimur munere, sed tuemur ea, quae audiebamus, conferebamus, neque erat umquam controversia, quid ego intellegerem, sed quid probarem. Extremum autem esse bonorum eum voluptate vivere. Sic faciam igitur, inquit: unam rem explicabo, eamque maximam, de physicis alias, et quidem locis pluribus.<a href="#section-5-1.6.9" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-6">
<h2 id="name-table">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-table" class="section-name selfRef">Table</a>
</h2>
<div class="alignLeft art-text artwork" id="section-6-1">
<pre>
+-----+-----+-----------+
| | | |
+-----+-----+-----+-----+
| | | | |
+=====+=====+=====+=====+
| | | | |
+-----+-----+-----+-----+
| | |
+ +-----+-----+-----+
| | | | |
+ + +-----+-----+
| | | |
+-----+ +-----+-----+
| | | | |
+=====+=====+=====+=====+
| | | | |
+-----+-----+-----+-----+
</pre><a href="#section-6-1" class="pilcrow">¶</a>
</div>
<span id="name-header-footer-colspan-and-r"></span><table class="center" id="table-1">
<caption>
<a href="#table-1" class="selfRef">Table 1</a>:
<a href="#name-header-footer-colspan-and-r" class="selfRef">Header, footer, colspan and rowspan<br>Default alignment</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">A</th>
<th class="text-left" rowspan="1" colspan="1">B</th>
<th class="text-left" rowspan="1" colspan="2">C D</th>
</tr>
<tr>
<th class="text-left" rowspan="1" colspan="1">1</th>
<th class="text-left" rowspan="1" colspan="1">2</th>
<th class="text-left" rowspan="1" colspan="1">3</th>
<th class="text-left" rowspan="1" colspan="1">4</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1"> Long text in a single cell</td>
<td class="text-left" rowspan="1" colspan="1">b1</td>
<td class="text-left" rowspan="1" colspan="1">c1</td>
<td class="text-left" rowspan="1" colspan="1">d1</td>
</tr>
<tr>
<td class="text-left" rowspan="3" colspan="1">Long text in a 3-cell column.<br> Quid igitur est? Inquit; audire enim cupio, quid non probes eius, a quo dissentias.</td>
<td class="text-left" rowspan="1" colspan="3">Long text in a 3-cell row.<br> Quid enim est a Cyrenaicisque melius liberiusque defenditur, tamen eius modi tempora incidunt, ut labore et dolore disputandum putant.</td>
</tr>
<tr>
<td class="text-left" rowspan="3" colspan="1">Another 3-cell column.</td>
<td class="text-left" rowspan="1" colspan="1">c3</td>
<td class="text-left" rowspan="1" colspan="1">d3</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="2">x</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">a5</td>
<td class="text-left" rowspan="1" colspan="1">c5</td>
<td class="text-left" rowspan="1" colspan="1">d5</td>
</tr>
</tbody>
<tfoot>
<tr>
<td class="text-left" rowspan="1" colspan="1">aa</td>
<td class="text-left" rowspan="1" colspan="1">bb</td>
<td class="text-left" rowspan="1" colspan="1">cc</td>
<td class="text-left" rowspan="1" colspan="1">dd</td>
</tr>
</tfoot>
</table>
<span id="name-large-colspan"></span><table class="center" id="table-2">
<caption>
<a href="#table-2" class="selfRef">Table 2</a>:
<a href="#name-large-colspan" class="selfRef">Large colspan</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="2" colspan="1">Column Title 1</th>
<th class="text-left" rowspan="2" colspan="1">Column Tilte 2</th>
<th class="text-left" rowspan="1" colspan="6">Column Title 3</th>
<th class="text-left" rowspan="1" colspan="2">TC 4</th>
<th class="text-left" rowspan="1" colspan="2">TC 5</th>
<th class="text-left" rowspan="1" colspan="2">TC 6</th>
<th class="text-left" rowspan="1" colspan="2">TC 7</th>
</tr>
<tr>
<th class="text-left" rowspan="1" colspan="1">C1</th>
<th class="text-left" rowspan="1" colspan="1">C2</th>
<th class="text-left" rowspan="1" colspan="1">C3</th>
<th class="text-left" rowspan="1" colspan="1">C4</th>
<th class="text-left" rowspan="1" colspan="1">C5</th>
<th class="text-left" rowspan="1" colspan="1">C6</th>
<th class="text-left" rowspan="1" colspan="1">C1</th>
<th class="text-left" rowspan="1" colspan="1">C2</th>
<th class="text-left" rowspan="1" colspan="1">C1</th>
<th class="text-left" rowspan="1" colspan="1">C2</th>
<th class="text-left" rowspan="1" colspan="1">C1</th>
<th class="text-left" rowspan="1" colspan="1">C2</th>
<th class="text-left" rowspan="1" colspan="1">C1</th>
<th class="text-left" rowspan="1" colspan="1">C2</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="2" colspan="1">Major Row 1, Column 1</td>
<td class="text-left" rowspan="1" colspan="1">Minor Row 1, Column 2</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Minor Row 2, Column 2</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
<td class="text-left" rowspan="1" colspan="1">x</td>
</tr>
</tbody>
</table>
<span id="name-row-wide-colspan"></span><table class="center" id="table-3">
<caption>
<a href="#table-3" class="selfRef">Table 3</a>:
<a href="#name-row-wide-colspan" class="selfRef">Row wide colspan</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Column1: Foobar!!!</th>
<th class="text-left" rowspan="1" colspan="1">Column2</th>
<th class="text-left" rowspan="1" colspan="1">Column3: Column with a very long title</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="3">Row A: Centered colspan</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Row B, Col 1</td>
<td class="text-left" rowspan="1" colspan="1">Row B, Col 2</td>
<td class="text-left" rowspan="1" colspan="1">ThisLineTakesWholeColumnWithoutBreaking!!!!</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="3">Row C: Left aligned colspan</td>
</tr>
<tr>
<td class="text-right" rowspan="1" colspan="3">Row D: Right aligned colspan</td>
</tr>
</tbody>
</table>
<span id="name-aligned-left"></span><table class="left" id="table-4">
<caption>
<a href="#table-4" class="selfRef">Table 4</a>:
<a href="#name-aligned-left" class="selfRef">Aligned left</a>
</caption>
<tbody>
<tr>
<th class="text-left" rowspan="1" colspan="1">One</th>
<th class="text-left" rowspan="1" colspan="1">Two</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Alpha</td>
<td class="text-left" rowspan="1" colspan="1">Beta</td>
</tr>
</tbody>
</table>
<span id="name-aligned-center"></span><table class="center" id="table-5">
<caption>
<a href="#table-5" class="selfRef">Table 5</a>:
<a href="#name-aligned-center" class="selfRef">Aligned center</a>
</caption>
<tbody>
<tr>
<th class="text-left" rowspan="1" colspan="1">One</th>
<th class="text-left" rowspan="1" colspan="1">Two</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Alpha</td>
<td class="text-left" rowspan="1" colspan="1">Beta</td>
</tr>
</tbody>
</table>
<span id="name-aligned-right"></span><table class="right" id="table-6">
<caption>
<a href="#table-6" class="selfRef">Table 6</a>:
<a href="#name-aligned-right" class="selfRef">Aligned right</a>
</caption>
<tbody>
<tr>
<th class="text-left" rowspan="1" colspan="1">One</th>
<th class="text-left" rowspan="1" colspan="1">Two</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Alpha</td>
<td class="text-left" rowspan="1" colspan="1">Beta</td>
</tr>
</tbody>
</table>
<p id="section-6-8">
A really tight table where left padding cannot be applied as it would throw
the left-alignment of the text off.<a href="#section-6-8" class="pilcrow">¶</a></p>
<table class="center" id="table-7">
<caption><a href="#table-7" class="selfRef">Table 7</a></caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Method</th>
<th class="text-left" rowspan="1" colspan="1">Definition</th>
<th class="text-left" rowspan="1" colspan="1">ptype</th>
<th class="text-left" rowspan="1" colspan="1">property</th>
<th class="text-left" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Status</th>
<th class="text-left" rowspan="1" colspan="1">Version</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">dnswl</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8904</td>
<td class="text-left" rowspan="1" colspan="1">dns</td>
<td class="text-left" rowspan="1" colspan="1">zone</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-6-9.2.1.5.1">DNSWL publicly accessible query root domain<a href="#section-6-9.2.1.5.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1">active</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">dnswl</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8904</td>
<td class="text-left" rowspan="1" colspan="1">policy</td>
<td class="text-left" rowspan="1" colspan="1">ip</td>
<td class="text-left" rowspan="1" colspan="1">
<p id="section-6-9.2.2.5.1">type A response received (or a quoted,
comma-separated list thereof)<a href="#section-6-9.2.2.5.1" class="pilcrow">¶</a></p>
</td>
<td class="text-left" rowspan="1" colspan="1">active</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">dnswl</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8904</td>
<td class="text-left" rowspan="1" colspan="1">policy</td>
<td class="text-left" rowspan="1" colspan="1">txt</td>
<td class="text-left" rowspan="1" colspan="1">type TXT query response</td>
<td class="text-left" rowspan="1" colspan="1">active</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">dnswl</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8904</td>
<td class="text-left" rowspan="1" colspan="1">dns</td>
<td class="text-left" rowspan="1" colspan="1">sec</td>
<td class="text-left" rowspan="1" colspan="1">one of "yes" for DNSSEC authenticated data, "no" for
not signed, or "na" for not applicable</td>
<td class="text-left" rowspan="1" colspan="1">active</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
</tr>
</tbody>
</table>
</section>
<section id="section-7">
<h2 id="name-unicode-literals">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-unicode-literals" class="section-name selfRef">Unicode Literals</a>
</h2>
<section id="section-7.1">
<h3 id="name-single-characters">
<a href="#section-7.1" class="section-number selfRef">7.1. </a><a href="#name-single-characters" class="section-name selfRef">Single Characters</a>
</h3>
<span class="break"></span><dl class="dlNewline" id="section-7.1-1">
<dt id="section-7.1-1.1">Expansion "num":</dt>
<dd style="margin-left: 1.5em" id="section-7.1-1.2">
<p id="section-7.1-1.2.1">Example XML:<a href="#section-7.1-1.2.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.1-1.2.2">
<pre>Use the character
<u format="num">Δ</u>.</pre><a href="#section-7.1-1.2.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-1.2.3">expands to:<a href="#section-7.1-1.2.3" class="pilcrow">¶</a></p>
<p id="section-7.1-1.2.4">
Use the character <span class="unicode">U+0394</span>.<a href="#section-7.1-1.2.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.1-1.3">Expansion "name":</dt>
<dd style="margin-left: 1.5em" id="section-7.1-1.4">
<p id="section-7.1-1.4.1">Example XML:<a href="#section-7.1-1.4.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.1-1.4.2">
<pre>Use the character <u format="name-num">Δ</u>.</pre><a href="#section-7.1-1.4.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-1.4.3">expands to:<a href="#section-7.1-1.4.3" class="pilcrow">¶</a></p>
<p id="section-7.1-1.4.4">
Use the character <span class="unicode">GREEK CAPITAL LETTER DELTA (U+0394)</span>.<a href="#section-7.1-1.4.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.1-1.5">Expansion "num-lit":</dt>
<dd style="margin-left: 1.5em" id="section-7.1-1.6">
<p id="section-7.1-1.6.1">Example XML:<a href="#section-7.1-1.6.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.1-1.6.2">
<pre>Use the character <u format="num-lit">Δ</u>.</pre><a href="#section-7.1-1.6.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-1.6.3">expands to:<a href="#section-7.1-1.6.3" class="pilcrow">¶</a></p>
<p id="section-7.1-1.6.4">
Use the character <span class="unicode">U+0394 ("Δ")</span>.<a href="#section-7.1-1.6.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.1-1.7">Expansion "num-name":</dt>
<dd style="margin-left: 1.5em" id="section-7.1-1.8">
<p id="section-7.1-1.8.1">Example XML:<a href="#section-7.1-1.8.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.1-1.8.2">
<pre>Use the <u format="{num} character ({name})">Δ</u>.</pre><a href="#section-7.1-1.8.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-1.8.3">expands to:<a href="#section-7.1-1.8.3" class="pilcrow">¶</a></p>
<p id="section-7.1-1.8.4">
Use the <span class="unicode">U+0394 character (GREEK CAPITAL LETTER DELTA)</span>.<a href="#section-7.1-1.8.4" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-7.1-1.8.5.1">Tab: <span class="unicode">U+0009 (U+0009)</span><a href="#section-7.1-1.8.5.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7.1-1.8.5.2">Char(128): <span class="unicode">U+0080 (U+0080)</span><a href="#section-7.1-1.8.5.2" class="pilcrow">¶</a>
</li>
</ul>
</dd>
<dd class="break"></dd>
<dt id="section-7.1-1.9">Expansion "num-lit-name":</dt>
<dd style="margin-left: 1.5em" id="section-7.1-1.10">
<p id="section-7.1-1.10.1">Example XML:<a href="#section-7.1-1.10.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.1-1.10.2">
<pre>Use the character <u format="num-lit-name">Δ</u>.</pre><a href="#section-7.1-1.10.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-1.10.3">expands to:<a href="#section-7.1-1.10.3" class="pilcrow">¶</a></p>
<p id="section-7.1-1.10.4">
Use the character <span class="unicode">U+0394 ("Δ", GREEK CAPITAL LETTER DELTA)</span>.<a href="#section-7.1-1.10.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.1-1.11">Expansion "num-name-lit":</dt>
<dd style="margin-left: 1.5em" id="section-7.1-1.12">
<p id="section-7.1-1.12.1">Example XML:<a href="#section-7.1-1.12.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.1-1.12.2">
<pre>Use the character <u format="num-name-lit">Δ</u>.</pre><a href="#section-7.1-1.12.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-1.12.3">expands to:<a href="#section-7.1-1.12.3" class="pilcrow">¶</a></p>
<p id="section-7.1-1.12.4">
Use the character <span class="unicode">U+0394 (GREEK CAPITAL LETTER DELTA, "Δ")</span>.<a href="#section-7.1-1.12.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.1-1.13">Expansion "ascii-lit-num":</dt>
<dd style="margin-left: 1.5em" id="section-7.1-1.14">
<p id="section-7.1-1.14.1">Example XML:<a href="#section-7.1-1.14.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.1-1.14.2">
<pre>Use the character
<u ascii="Delta" format="ascii-lit-num" ascii="Delta">Δ</u>.</pre><a href="#section-7.1-1.14.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-1.14.3">expands to:<a href="#section-7.1-1.14.3" class="pilcrow">¶</a></p>
<p id="section-7.1-1.14.4">
Use the character <span class="unicode">"Delta" ("Δ", U+0394)</span>.<a href="#section-7.1-1.14.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.1-1.15">Expansion "lit-name-num":</dt>
<dd style="margin-left: 1.5em" id="section-7.1-1.16">
<p id="section-7.1-1.16.1">Example XML:<a href="#section-7.1-1.16.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.1-1.16.2">
<pre>Use the <u format="{lit} character ({name}, {num})">Δ</u>.</pre><a href="#section-7.1-1.16.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-1.16.3">expands to:<a href="#section-7.1-1.16.3" class="pilcrow">¶</a></p>
<p id="section-7.1-1.16.4">
Use the <span class="unicode">"Δ" character (GREEK CAPITAL LETTER DELTA, U+0394)</span><a href="#section-7.1-1.16.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.1-1.17">Expansion "lit-num":</dt>
<dd style="margin-left: 1.5em" id="section-7.1-1.18">
<p id="section-7.1-1.18.1">Example XML:<a href="#section-7.1-1.18.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.1-1.18.2">
<pre>Use the <u format="{lit} character ({num})">Δ</u>.</pre><a href="#section-7.1-1.18.2" class="pilcrow">¶</a>
</div>
<p id="section-7.1-1.18.3">expands to:<a href="#section-7.1-1.18.3" class="pilcrow">¶</a></p>
<p id="section-7.1-1.18.4">
Use the <span class="unicode">"Δ" character (U+0394)</span>.<a href="#section-7.1-1.18.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-7.2">
<h3 id="name-character-strings">
<a href="#section-7.2" class="section-number selfRef">7.2. </a><a href="#name-character-strings" class="section-name selfRef">Character Strings</a>
</h3>
<span class="break"></span><dl class="dlNewline" id="section-7.2-1">
<dt id="section-7.2-1.1">Expansion "num-lit":</dt>
<dd style="margin-left: 1.5em" id="section-7.2-1.2">
<p id="section-7.2-1.2.1">Example XML:<a href="#section-7.2-1.2.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.2-1.2.2">
<pre>For example, the characters
<u ascii="STPETER" format="num-lit">ᏚᎢᎵᎬᎢᎬᏒ</u>
from the Cherokee block look similar to the ASCII characters
"STPETER".</pre><a href="#section-7.2-1.2.2" class="pilcrow">¶</a>
</div>
<p id="section-7.2-1.2.3">expands to:<a href="#section-7.2-1.2.3" class="pilcrow">¶</a></p>
<p id="section-7.2-1.2.4">
For example, the characters <span class="unicode">U+13DA U+13A2 U+13B5 U+13AC U+13A2 U+13AC U+13D2 ("ᏚᎢᎵᎬᎢᎬᏒ")</span> from the Cherokee block look similar to the ASCII characters "STPETER".<a href="#section-7.2-1.2.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.2-1.3">Expansion "num-name":</dt>
<dd style="margin-left: 1.5em" id="section-7.2-1.4">
<p id="section-7.2-1.4.1">Example XML:<a href="#section-7.2-1.4.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.2-1.4.2">
<pre>
For example, the characters
<u ascii="STPETER" format="num-name">ᏚᎢᎵᎬᎢᎬᏒ</u>
from the Cherokee block look similar to the ASCII characters
"STPETER".</pre><a href="#section-7.2-1.4.2" class="pilcrow">¶</a>
</div>
<p id="section-7.2-1.4.3">expands to:<a href="#section-7.2-1.4.3" class="pilcrow">¶</a></p>
<p id="section-7.2-1.4.4">
For example, the characters <span class="unicode">U+13DA U+13A2 U+13B5 U+13AC U+13A2 U+13AC U+13D2 (CHEROKEE LETTER DU, CHEROKEE LETTER I, CHEROKEE LETTER LI, CHEROKEE LETTER GV, CHEROKEE LETTER I, CHEROKEE LETTER GV, CHEROKEE LETTER SV)</span> from the Cherokee block look similar to the ASCII characters "STPETER".<a href="#section-7.2-1.4.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.2-1.5">Expansion "num-lit-name":</dt>
<dd style="margin-left: 1.5em" id="section-7.2-1.6">
<p id="section-7.2-1.6.1">Example XML:<a href="#section-7.2-1.6.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.2-1.6.2">
<pre>
For example, the characters
<u ascii="STPETER" format="num-lit-name">ᏚᎢᎵᎬᎢᎬᏒ</u>
from the Cherokee block look similar to the ASCII characters
"STPETER".</pre><a href="#section-7.2-1.6.2" class="pilcrow">¶</a>
</div>
<p id="section-7.2-1.6.3">expands to:<a href="#section-7.2-1.6.3" class="pilcrow">¶</a></p>
<p id="section-7.2-1.6.4">
For example, the characters <span class="unicode">U+13DA U+13A2 U+13B5 U+13AC U+13A2 U+13AC U+13D2 ("ᏚᎢᎵᎬᎢᎬᏒ", CHEROKEE LETTER DU, CHEROKEE LETTER I, CHEROKEE LETTER LI, CHEROKEE LETTER GV, CHEROKEE LETTER I, CHEROKEE LETTER GV, CHEROKEE LETTER SV)</span> from the Cherokee block look similar to the ASCII characters "STPETER".<a href="#section-7.2-1.6.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.2-1.7">Expansion "num-name-lit":</dt>
<dd style="margin-left: 1.5em" id="section-7.2-1.8">
<p id="section-7.2-1.8.1">Example XML:<a href="#section-7.2-1.8.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.2-1.8.2">
<pre>
For example, the characters
<u ascii="STPETER" format="num-name-lit">ᏚᎢᎵᎬᎢᎬᏒ</u>
from the Cherokee block look similar to the ASCII characters
"STPETER".</pre><a href="#section-7.2-1.8.2" class="pilcrow">¶</a>
</div>
<p id="section-7.2-1.8.3">expands to:<a href="#section-7.2-1.8.3" class="pilcrow">¶</a></p>
<p id="section-7.2-1.8.4">
For example, the characters <span class="unicode">U+13DA U+13A2 U+13B5 U+13AC U+13A2 U+13AC U+13D2 (CHEROKEE LETTER DU, CHEROKEE LETTER I, CHEROKEE LETTER LI, CHEROKEE LETTER GV, CHEROKEE LETTER I, CHEROKEE LETTER GV, CHEROKEE LETTER SV, "ᏚᎢᎵᎬᎢᎬᏒ")</span> from the Cherokee block look similar to the ASCII characters "STPETER".<a href="#section-7.2-1.8.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.2-1.9">Expansion "ascii-lit-num":</dt>
<dd style="margin-left: 1.5em" id="section-7.2-1.10">
<p id="section-7.2-1.10.1">Example XML:<a href="#section-7.2-1.10.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.2-1.10.2">
<pre>
For example, the characters
<u ascii="STPETER" format="ascii-lit-num">ᏚᎢᎵᎬᎢᎬᏒ</u>
from the Cherokee block look similar to the ASCII characters
"STPETER".</pre><a href="#section-7.2-1.10.2" class="pilcrow">¶</a>
</div>
<p id="section-7.2-1.10.3">expands to:<a href="#section-7.2-1.10.3" class="pilcrow">¶</a></p>
<p id="section-7.2-1.10.4">
For example, the characters <span class="unicode">"STPETER" ("ᏚᎢᎵᎬᎢᎬᏒ", U+13DA U+13A2 U+13B5 U+13AC U+13A2 U+13AC U+13D2)</span> from the Cherokee block look similar to the ASCII characters "STPETER".<a href="#section-7.2-1.10.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.2-1.11">Expansion "lit-name-num":</dt>
<dd style="margin-left: 1.5em" id="section-7.2-1.12">
<p id="section-7.2-1.12.1">Example XML:<a href="#section-7.2-1.12.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.2-1.12.2">
<pre>
For example, the
<u ascii="STPETER" format="{lit}
characters ({name}, {num})">ᏚᎢᎵᎬᎢᎬᏒ</u>
from the Cherokee block look similar to the ASCII characters
"STPETER".</pre><a href="#section-7.2-1.12.2" class="pilcrow">¶</a>
</div>
<p id="section-7.2-1.12.3">expands to:<a href="#section-7.2-1.12.3" class="pilcrow">¶</a></p>
<p id="section-7.2-1.12.4">
For example, the <span class="unicode">"ᏚᎢᎵᎬᎢᎬᏒ" characters (CHEROKEE LETTER DU, CHEROKEE LETTER I, CHEROKEE LETTER LI, CHEROKEE LETTER GV, CHEROKEE LETTER I, CHEROKEE LETTER GV, CHEROKEE LETTER SV, U+13DA U+13A2 U+13B5 U+13AC U+13A2 U+13AC U+13D2)</span> from the Cherokee block look similar to the ASCII characters "STPETER".<a href="#section-7.2-1.12.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-7.2-1.13">Expansion "lit-num":</dt>
<dd style="margin-left: 1.5em" id="section-7.2-1.14">
<p id="section-7.2-1.14.1">Example XML:<a href="#section-7.2-1.14.1" class="pilcrow">¶</a></p>
<div class="alignLeft art-text artwork" id="section-7.2-1.14.2">
<pre>
For example, the
<u ascii="STPETER" format="{lit} characters ({num})">ᏚᎢᎵᎬᎢᎬᏒ</u>
from the Cherokee block look similar to the ASCII characters
"STPETER".</pre><a href="#section-7.2-1.14.2" class="pilcrow">¶</a>
</div>
<p id="section-7.2-1.14.3">expands to:<a href="#section-7.2-1.14.3" class="pilcrow">¶</a></p>
<p id="section-7.2-1.14.4">
For example, the <span class="unicode">"ᏚᎢᎵᎬᎢᎬᏒ" characters (U+13DA U+13A2 U+13B5 U+13AC U+13A2 U+13AC U+13D2)</span> from the Cherokee block look similar to the ASCII characters "STPETER".<a href="#section-7.2-1.14.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
</section>
</section>
<section id="section-8">
<h2 id="name-irregular-date-specificatio">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-irregular-date-specificatio" class="section-name selfRef">Irregular date specifications</a>
</h2>
<p id="section-8-1">
You can now use date ranges like "2002-2003" (See <span>[<a href="#DATE-RANGE" class="cite xref">DATE-RANGE</a>]</span>) and
fuzzy dates such as "Spring 1814" (See <span>[<a href="#FUZZY-DATE" class="cite xref">FUZZY-DATE</a>]</span>) by omitting
the year/month/day attributes of <date>, and instead provide text content.<a href="#section-8-1" class="pilcrow">¶</a></p>
</section>
<div id="aside">
<section id="section-9">
<h2 id="name-aside-word-joiner-and-break">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-aside-word-joiner-and-break" class="section-name selfRef">Aside, Word Joiner, and Break</a>
</h2>
<aside id="section-9-1">
<p id="section-9-1.1">
Aside: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce at sapien mauris.
Integer sit amet ultrices urna. Mauris at arcu vestibulum, suscipit nisi id, auctor
felis. Donec porttitor enim id augue ullamcorper tincidunt. Curabitur sit amet
volutpat turpis. Vestibulum vitae velit nisl. Phasellus ac dolor eu eros pulvinar
scelerisque. Pellentesque volutpat id lacus rutrum sodales.<a href="#section-9-1.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-9-2">
Regular: Nam ut tortor ut dui fermentum viverra. Quisque sed aliquam enim. Pellentesque
vestibulum risus sed ligula eleifend commodo. Sed vel lacus id mauris dapibus
lobortis. Suspendisse quis pellentesque nisl, vitae pulvinar felis. Ut at hendrerit
odio. Morbi non sem non ligula posuere ultrices.<a href="#section-9-2" class="pilcrow">¶</a></p>
<aside id="section-9-3">
<p id="section-9-3.1">
In dignissim lacus et auctor sagittis. Integer ex tellus, mollis vel ultrices sed,
porta eget lacus. Sed sapien leo, gravida ac sapien vel, feugiat fermentum neque.
Vivamus magna urna, malesuada sit amet odio at, gravida aliquam magna. Curabitur
imperdiet eros eu lectus vestibulum semper. Vestibulum vitae accumsan tortor.
Praesent nunc ex, ultrices vel semper sit amet, scelerisque a dui.<a href="#section-9-3.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-9-3.2.1">
Maecenas laoreet ante in fringilla commodo.
Fusce ullamcorper mattis neque, a
maximus velit maximus eu.<a href="#section-9-3.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-9-3.2.2">
In scelerisque commodo ex, sit amet tincidunt metus
porttitor sed.
Sed eget lorem eget felis lacinia auctor non dignissim nisi.<a href="#section-9-3.2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-9-3.2.3">
Phasellus quis sapien varius, sollicitudin nisi eget, venenatis turpis.
In tincidunt
aliquet felis, vel fermentum enim tincidunt eget.
Morbi rutrum ex sit amet mauris
dignissim mattis.<a href="#section-9-3.2.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-9-3.2.4">
Nullam pharetra, augue vitae commodo sodales, urna enim bibendum
enim, et viverra tellus nisl eget urna.<a href="#section-9-3.2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-9-3.2.5">
Morbi commodo orci id commodo malesuada.
Nulla maximus eros dui, eget pellentesque lorem sagittis sed.<a href="#section-9-3.2.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-9-3.2.6">
Donec at erat
ultrices, pellentesque orci ut, fermentum est. Sed sed molestie lorem. Praesent eget
sem ut eros mollis fermentum.<a href="#section-9-3.2.6" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-9-3.2.7">
Nullam ex elit, maximus at turpis a, porttitor
fringilla felis. Sed ut sodales elit, sit amet dictum sapien.<a href="#section-9-3.2.7" class="pilcrow">¶</a>
</li>
</ul>
<blockquote id="section-9-3.3">
Tell me and I forget. Teach me and I remember. Involve me and I learn.<a href="#section-9-3.3" class="pilcrow">¶</a><cite>— Benjamin Franklin</cite>
</blockquote>
<blockquote id="section-9-3.4">
<ul class="normal">
<li class="normal" id="section-9-3.4.1.1">First item<a href="#section-9-3.4.1.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-9-3.4.1.2">Second item<a href="#section-9-3.4.1.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-9-3.4.1.3">
<p id="section-9-3.4.1.3.1">Third item<a href="#section-9-3.4.1.3.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-9-3.4.1.3.2.1">First of third<a href="#section-9-3.4.1.3.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-9-3.4.1.3.2.2">Second of third<a href="#section-9-3.4.1.3.2.2" class="pilcrow">¶</a>
</li>
</ul>
</li>
</ul>
</blockquote>
<blockquote id="section-9-3.5">
<ol start="1" type="1" class="normal type-1" id="section-9-3.5.1">
<li id="section-9-3.5.1.1">First item<a href="#section-9-3.5.1.1" class="pilcrow">¶</a>
</li>
<li id="section-9-3.5.1.2">Second item<a href="#section-9-3.5.1.2" class="pilcrow">¶</a>
</li>
<li id="section-9-3.5.1.3">
<p id="section-9-3.5.1.3.1">Third item<a href="#section-9-3.5.1.3.1" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-9-3.5.1.3.2">
<li id="section-9-3.5.1.3.2.1">First of third<a href="#section-9-3.5.1.3.2.1" class="pilcrow">¶</a>
</li>
<li id="section-9-3.5.1.3.2.2">Second of third<a href="#section-9-3.5.1.3.2.2" class="pilcrow">¶</a>
</li>
</ol>
</li>
</ol>
</blockquote>
</aside>
<aside id="section-9-4">
<p id="section-9-4.1">This sentence has no word joiner 'wj' in the double-word.<a href="#section-9-4.1" class="pilcrow">¶</a></p>
<p id="section-9-4.2">
This sentence has a word joiner 'wj' in this double-word.<a href="#section-9-4.2" class="pilcrow">¶</a></p>
<p id="section-9-4.3">This longer sentence has no word joiner 'wj' in the double-word.<a href="#section-9-4.3" class="pilcrow">¶</a></p>
<p id="section-9-4.4">This longer sentence has a word joiner 'wj' in this double-word.<a href="#section-9-4.4" class="pilcrow">¶</a></p>
<p id="section-9-4.5">This longer longer sentence has no word joiner 'wj' in the double-word.<a href="#section-9-4.5" class="pilcrow">¶</a></p>
<p id="section-9-4.6">This longer longer sentence has a word joiner 'wj' in this double-word.<a href="#section-9-4.6" class="pilcrow">¶</a></p>
<p id="section-9-4.7">This longer longer longer sentence has no word joiner 'wj' in the double-word.<a href="#section-9-4.7" class="pilcrow">¶</a></p>
<p id="section-9-4.8">This longer longer longer sentence has a word joiner 'wj' in this double-word.<a href="#section-9-4.8" class="pilcrow">¶</a></p>
</aside>
<aside id="section-9-5">
<p id="section-9-5.1">This sentence has no 'nbsp' in the double word.<a href="#section-9-5.1" class="pilcrow">¶</a></p>
<p id="section-9-5.2">This sentence has a 'nbsp' in this double word.<a href="#section-9-5.2" class="pilcrow">¶</a></p>
<p id="section-9-5.3">This longer sentence has no 'nbsp' in the double word.<a href="#section-9-5.3" class="pilcrow">¶</a></p>
<p id="section-9-5.4">This longer sentence has a 'nbsp' in this double word.<a href="#section-9-5.4" class="pilcrow">¶</a></p>
<p id="section-9-5.5">This longer longer sentence has no 'nbsp' in the double word.<a href="#section-9-5.5" class="pilcrow">¶</a></p>
<p id="section-9-5.6">This longer longer sentence has a 'nbsp' in this double word.<a href="#section-9-5.6" class="pilcrow">¶</a></p>
<p id="section-9-5.7">This longer longer longer sentence has no 'nbsp' in the double word.<a href="#section-9-5.7" class="pilcrow">¶</a></p>
<p id="section-9-5.8">This longer longer longer sentence has a 'nbsp' in this double word.<a href="#section-9-5.8" class="pilcrow">¶</a></p>
<p id="section-9-5.9">This longer longer longer longer sentence has no 'nbsp' in the double word.<a href="#section-9-5.9" class="pilcrow">¶</a></p>
<p id="section-9-5.10">This longer longer longer longer sentence has a 'nbsp' in this double word.<a href="#section-9-5.10" class="pilcrow">¶</a></p>
</aside>
<aside id="section-9-6">
<p id="section-9-6.1">
This sentence |<br> has <strong>three</strong> forced breaks |<br> in order to be displayed |<br> on multiple lines.
This second sentence does not have a forced break, and should end up being wrapped.<a href="#section-9-6.1" class="pilcrow">¶</a></p>
</aside>
<span class="break"></span><dl class="dlParallel" id="section-9-7">
<dt id="section-9-7.1">Definition list with aside in <dd></dt>
<dd style="margin-left: 1.5em" id="section-9-7.2">
<aside id="section-9-7.2.1">
<p id="section-9-7.2.1.1">This is text in an aside inside a definition list definition<a href="#section-9-7.2.1.1" class="pilcrow">¶</a></p>
</aside>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<section id="section-10">
<h2 id="name-section-title-test-1">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-section-title-test-1" class="section-name selfRef">Section title test 1</a>
</h2>
<p id="section-10-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<a href="#section-10-1" class="pilcrow">¶</a></p>
</section>
<section id="section-11">
<h2 id="name-section-level-h2">
<a href="#section-11" class="section-number selfRef">11. </a><a href="#name-section-level-h2" class="section-name selfRef">Section level h2</a>
</h2>
<p id="section-11-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<a href="#section-11-1" class="pilcrow">¶</a></p>
<section id="section-11.1">
<h3 id="name-section-level-h3">
<a href="#section-11.1" class="section-number selfRef">11.1. </a><a href="#name-section-level-h3" class="section-name selfRef">Section level h3</a>
</h3>
<p id="section-11.1-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<a href="#section-11.1-1" class="pilcrow">¶</a></p>
<section id="section-11.1.1">
<h4 id="name-section-level-h4">
<a href="#section-11.1.1" class="section-number selfRef">11.1.1. </a><a href="#name-section-level-h4" class="section-name selfRef">Section level h4</a>
</h4>
<p id="section-11.1.1-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<a href="#section-11.1.1-1" class="pilcrow">¶</a></p>
<section id="section-11.1.1.1">
<h5 id="name-section-level-h5">
<a href="#section-11.1.1.1" class="section-number selfRef">11.1.1.1. </a><a href="#name-section-level-h5" class="section-name selfRef">Section level h5</a>
</h5>
<p id="section-11.1.1.1-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<a href="#section-11.1.1.1-1" class="pilcrow">¶</a></p>
<section id="section-11.1.1.1.1">
<h6 id="name-section-level-h6">
<a href="#section-11.1.1.1.1" class="section-number selfRef">11.1.1.1.1. </a><a href="#name-section-level-h6" class="section-name selfRef">Section level h6</a>
</h6>
<p id="section-11.1.1.1.1-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<a href="#section-11.1.1.1.1-1" class="pilcrow">¶</a></p>
</section>
</section>
</section>
</section>
</section>
<section id="section-12">
<h2 id="name-eref-brackets">
<a href="#section-12" class="section-number selfRef">12. </a><a href="#name-eref-brackets" class="section-name selfRef">Eref brackets</a>
</h2>
<ul class="normal">
<li class="normal" id="section-12-1.1">
<span><a href="https://www.ietf.org">https://www.ietf.org</a></span><a href="#section-12-1.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-12-1.2">
<a href="https://www.ietf.org">IETF</a><a href="#section-12-1.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-12-1.3">
<span><<a href="https://www.ietf.org">https://www.ietf.org</a>></span><a href="#section-12-1.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-12-1.4">
<a href="https://www.ietf.org">IETF</a><a href="#section-12-1.4" class="pilcrow">¶</a>
</li>
</ul>
</section>
<section id="section-13">
<h2 id="name-sourcecode-indentation">
<a href="#section-13" class="section-number selfRef">13. </a><a href="#name-sourcecode-indentation" class="section-name selfRef">Sourcecode indentation</a>
</h2>
<p id="section-13-1">Source code as-is:<a href="#section-13-1" class="pilcrow">¶</a></p>
<div class="sourcecode" id="section-13-2">
<pre>
while true ; do
case "$1" in
-h| --help) usage; exit;; # Show this help
-v| --verbose) VERBOSE=1;; # Be more talkative
-V| --version) version; exit;; # Show program version
--) shift; break;;
esac
shift
done
</pre><a href="#section-13-2" class="pilcrow">¶</a>
</div>
<p id="section-13-3">Source code within a figure:<a href="#section-13-3" class="pilcrow">¶</a></p>
<span id="name-sourcecode-within-figure"></span><figure id="figure-4">
<div class="sourcecode" id="section-13-4.1">
<pre>
for opt, value in opts:
if opt in ["-h", "--help"]: # Output this help, then exit
print __doc__ % locals()
sys.exit(1)
elif opt in ["-v", "--version"]: # Output version information
print program, version
sys.exit(0)
elif opt in ["-V", "--verbose"]: # Output version information
opt_verbose = True
</pre>
</div>
<figcaption><a href="#figure-4" class="selfRef">Figure 4</a>:
<a href="#name-sourcecode-within-figure" class="selfRef">Sourcecode within figure</a>
</figcaption></figure>
</section>
<section id="section-14">
<h2 id="name-tables-inside-lists">
<a href="#section-14" class="section-number selfRef">14. </a><a href="#name-tables-inside-lists" class="section-name selfRef">Tables inside lists</a>
</h2>
<span class="break"></span><dl class="olPercent" id="section-14-1">
<dt>Step 1:</dt>
<dd id="section-14-1.1" style="margin-left: 4.5em">
<div id="step1">
<p id="section-14-1.1.1">(This example is excerpted from pre-RFC8677) Indent="9"<a href="#section-14-1.1.1" class="pilcrow">¶</a></p>
<p id="section-14-1.1.2">
At nSFF1, the following nNLM is assumed:<a href="#section-14-1.1.2" class="pilcrow">¶</a></p>
<span id="name-nnlm-at-nsff1"></span><div id="fig-sfc-6">
<table class="center" id="table-8">
<caption>
<a href="#table-8" class="selfRef">Table 8</a>:
<a href="#name-nnlm-at-nsff1" class="selfRef">nNLM at nSFF1</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">SPI</th>
<th class="text-left" rowspan="1" colspan="1">SI</th>
<th class="text-left" rowspan="1" colspan="1">Next Hop(s)</th>
<th class="text-left" rowspan="1" colspan="1">Transport Encapsulation (TE)</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">255</td>
<td class="text-left" rowspan="1" colspan="1">192.0.2.1</td>
<td class="text-left" rowspan="1" colspan="1">VXLAN-gpe</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">254</td>
<td class="text-left" rowspan="1" colspan="1">198.51.100.10</td>
<td class="text-left" rowspan="1" colspan="1">GRE</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">253</td>
<td class="text-left" rowspan="1" colspan="1">www.example.com</td>
<td class="text-left" rowspan="1" colspan="1">HTTP</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">252</td>
<td class="text-left" rowspan="1" colspan="1">www.example2.com</td>
<td class="text-left" rowspan="1" colspan="1">HTTP</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">40</td>
<td class="text-left" rowspan="1" colspan="1">251</td>
<td class="text-left" rowspan="1" colspan="1">198.51.100.15</td>
<td class="text-left" rowspan="1" colspan="1">GRE</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">50</td>
<td class="text-left" rowspan="1" colspan="1">200</td>
<td class="text-left" rowspan="1" colspan="1">01:23:45:67:89:ab </td>
<td class="text-left" rowspan="1" colspan="1">Ethernet</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">15</td>
<td class="text-left" rowspan="1" colspan="1">212</td>
<td class="text-left" rowspan="1" colspan="1">Null (end of path)</td>
<td class="text-left" rowspan="1" colspan="1">None</td>
</tr>
</tbody>
</table>
</div>
</div>
</dd>
<dd class="break"></dd>
</dl>
<span class="break"></span><dl class="dlNewline" id="section-14-2">
<dt id="section-14-2.1">
<div id="dt-anchor">This is an arbitrary term:</div>
</dt>
<dd style="margin-left: 1.5em" id="section-14-2.2">
<p id="section-14-2.2.1">And this is some text with a table.<a href="#section-14-2.2.1" class="pilcrow">¶</a></p>
<table class="center" id="table-9">
<caption><a href="#table-9" class="selfRef">Table 9</a></caption><thead>
<tr>
<th class="text-left" rowspan="1" colspan="1">Head 1</th>
<th class="text-left" rowspan="1" colspan="1">Head 2</th>
<th class="text-left" rowspan="1" colspan="1">
<code>Head 3</code>
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">Cell A1</td>
<td class="text-left" rowspan="1" colspan="1">Cell A2</td>
<td class="text-left" rowspan="1" colspan="1">
<code>Cell A3</code>
</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Cell B1</td>
<td class="text-left" rowspan="1" colspan="1">Cell B2</td>
<td class="text-left" rowspan="1" colspan="1">
<code>Cell B3</code>
</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Cell C1</td>
<td class="text-left" rowspan="1" colspan="1">Cell C2</td>
<td class="text-left" rowspan="1" colspan="1">
<code>Cell C3</code>
</td>
</tr>
</tbody>
<tbody>
<tr>
<th class="text-left" rowspan="1" colspan="1">Head 10</th>
<th class="text-left" rowspan="1" colspan="1">Head 20</th>
<th class="text-left" rowspan="1" colspan="1">
<code>Head 30</code>
</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Cell A10</td>
<td class="text-left" rowspan="1" colspan="1">Cell A20</td>
<td class="text-left" rowspan="1" colspan="1">
<code>Cell A30</code>
</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Cell B10</td>
<td class="text-left" rowspan="1" colspan="1">Empty Cell:</td>
<td class="text-left" rowspan="1" colspan="1"></td>
</tr>
</tbody>
</table>
</dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-15">
<h2 id="name-wide-artwork">
<a href="#section-15" class="section-number selfRef">15. </a><a href="#name-wide-artwork" class="section-name selfRef">Wide artwork</a>
</h2>
<div class="alignLeft art-text artwork" id="section-15-1">
<pre>
0 1 2 3 4 5 6 7
123456789012345678901234567890123456789012345678901234567890123456789012
</pre><a href="#section-15-1" class="pilcrow">¶</a>
</div>
</section>
<section id="section-16">
<h2 id="name-sup-and-sub">
<a href="#section-16" class="section-number selfRef">16. </a><a href="#name-sup-and-sub" class="section-name selfRef">Sup and sub</a>
</h2>
<span class="break"></span><dl class="dlParallel" id="section-16-1">
<dt id="section-16-1.1">Sup</dt>
<dd style="margin-left: 1.5em" id="section-16-1.2">Text with superscript<sup>2</sup><a href="#section-16-1.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.3">Sup</dt>
<dd style="margin-left: 1.5em" id="section-16-1.4">Simple superscript expressions: x<sup>-1</sup> y<sup>+3.0</sup> z<sup>3.2a</sup><a href="#section-16-1.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.5">Sup</dt>
<dd style="margin-left: 1.5em" id="section-16-1.6">More simple superscript expressions: x<sup>1.2</sup> y<sup>n0</sup><a href="#section-16-1.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.7">Sup</dt>
<dd style="margin-left: 1.5em" id="section-16-1.8">Parenthetical expressions in superscript: x<sup>(n+1)</sup> y<sup>-(k-1)</sup> z<sup>(_c)</sup><a href="#section-16-1.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.9">Sup</dt>
<dd style="margin-left: 1.5em" id="section-16-1.10">Compound superscript expressions: x<sup>x+y</sup> y<sup>_c</sup> z<sup>a.0</sup><a href="#section-16-1.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.11">Sup</dt>
<dd style="margin-left: 1.5em" id="section-16-1.12">One word <sup>superscript</sup> or two <sup>words superscript</sup><a href="#section-16-1.12" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.13">Sup</dt>
<dd style="margin-left: 1.5em" id="section-16-1.14">Text with sub inside superscript<sup>x<sub>2</sub></sup><a href="#section-16-1.14" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.15">Sub</dt>
<dd style="margin-left: 1.5em" id="section-16-1.16">Text with subscript<sub>2</sub><a href="#section-16-1.16" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.17">Sub</dt>
<dd style="margin-left: 1.5em" id="section-16-1.18">Simple subscript expressions: x<sub>-1</sub> y<sub>+3.0</sub> z<sub>3.2a</sub><a href="#section-16-1.18" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.19">Sub</dt>
<dd style="margin-left: 1.5em" id="section-16-1.20">More simple subscript expressions: x<sub>1.2</sub> y<sub>n0</sub><a href="#section-16-1.20" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.21">Sub</dt>
<dd style="margin-left: 1.5em" id="section-16-1.22">Parenthetical expressions in subscript: x<sub>(n+1)</sub> y<sub>-(k-1)</sub> z<sub>(_c)</sub><a href="#section-16-1.22" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.23">Sub</dt>
<dd style="margin-left: 1.5em" id="section-16-1.24">Compound subscript expressions: x<sub>x+y</sub> y<sub>_c</sub> z<sub>a.0</sub><a href="#section-16-1.24" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.25">Sub</dt>
<dd style="margin-left: 1.5em" id="section-16-1.26">One word <sub>subscript</sub> or two <sub>words subscript</sub><a href="#section-16-1.26" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-16-1.27">Sub</dt>
<dd style="margin-left: 1.5em" id="section-16-1.28">Text with super inside subscript<sub>x<sup>2</sup></sub><a href="#section-16-1.28" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-17">
<h2 id="name-unnumbered-section">
<a href="#name-unnumbered-section" class="section-name selfRef">Unnumbered section</a>
</h2>
<p id="section-17-1">
Regular paragraph. Lorem ipsum dolor sit amet, consectetur
adipiscing elit. Ut pharetra neque vulputate dolor elementum
sodales. Maecenas maximus elit sit amet pretium facilisis. Vivamus
pulvinar, quam nec eleifend ultricies, nisi elit rhoncus risus, in
commodo mi leo in lorem.<a href="#section-17-1" class="pilcrow">¶</a></p>
<p style="margin-left: 2.5em" id="section-17-2">
Indented paragraph. Indent="5". Aenean ornare elit at urna molestie
fermentum. Donec erat purus, vestibulum in venenatis tempor,
feugiat nec neque. Fusce luctus sem neque, id venenatis turpis
vulputate nec. Nulla tincidunt pretium ex fringilla posuere. Cras
quis massa neque.<a href="#section-17-2" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-17-3">
<li style="padding-left: 0.5em;" id="section-17-3.1"> Indent="5". Lorem ipsum dolor sit amet, consectetur
adipiscing elit. Ut pharetra neque vulputate dolor elementum
sodales.<a href="#section-17-3.1" class="pilcrow">¶</a>
</li>
<li style="padding-left: 0.5em;" id="section-17-3.2"> Item 2<a href="#section-17-3.2" class="pilcrow">¶</a>
</li>
</ol>
<ul class="normal">
<li style="margin-left: 0.5em;" class="normal" id="section-17-4.1"> Indent="5".
“The heaviest penalty for declining to rule is to be ruled by someone inferior to yourself.”
<a href="#REPUBLIC" class="internal xref">Πολιτεία</a><a href="#section-17-4.1" class="pilcrow">¶</a>
</li>
<li style="margin-left: 0.5em;" class="normal" id="section-17-4.2">
<div class="alignLeft art-text artwork" id="section-17-4.2.1">
<pre>
Ich weiß nicht, was soll es bedeuten,
Daß ich so traurig bin;
Ein Mährchen aus alten Zeiten,
Das kommt mir nicht aus dem Sinn.
</pre><a href="#section-17-4.2.1" class="pilcrow">¶</a>
</div>
<p id="section-17-4.2.2"><a href="#GEDICHTE" class="internal xref">Dreiunddreißig Gedichte</a><a href="#section-17-4.2.2" class="pilcrow">¶</a></p>
</li>
</ul>
</section>
<div id="references-section">
<section id="section-18">
<h2 id="name-references">
<a href="#name-references" class="section-name selfRef">References</a>
</h2>
<section id="section-18.1">
<h3 id="name-normative-references">
<a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h3>
<dl class="references">
<dt id="RFC2119">[RFC2119]</dt>
<dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03" class="refDate">March 1997</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7997">[RFC7997]</dt>
<dd>
<span class="refAuthor">Flanagan, H., Ed.</span>, <span class="refTitle">"The Use of Non-ASCII Characters in RFCs"</span>, <span class="stream">IAB</span>, <span class="seriesInfo">RFC 7997</span>, <span class="seriesInfo">DOI 10.17487/RFC7997</span>, <time datetime="2016-12" class="refDate">December 2016</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7997">https://www.rfc-editor.org/info/rfc7997</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8174">[RFC8174]</dt>
<dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05" class="refDate">May 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-18.2">
<h3 id="name-informative-references">
<a href="#name-informative-references" class="section-name selfRef">Informative References</a>
</h3>
<div id="CMS">
<section id="section-18.2.1">
<h4 id="name-cms-references">
<a href="#name-cms-references" class="section-name selfRef">CMS References</a>
</h4>
<dl class="references">
<dt id="I-D.levkowetz-xml2rfc-v3-implementation-notes">[I-D.levkowetz-xml2rfc-v3-implementation-notes]</dt>
<dd>
<span class="refAuthor">Levkowetz, H.</span>, <span class="refTitle">"Implementation notes for RFC7991,"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-levkowetz-xml2rfc-v3-implementation-notes-13</span>, <time datetime="2021-09-16" class="refDate">September 16, 2021</time>, <span><<a href="https://datatracker.ietf.org/doc/html/draft-levkowetz-xml2rfc-v3-implementation-notes-13">https://datatracker.ietf.org/doc/html/draft-levkowetz-xml2rfc-v3-implementation-notes-13</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5083">[RFC5083]</dt>
<dd>
<span class="refAuthor">Housley, R.</span>, <span class="refTitle">"Cryptographic Message Syntax (CMS) Authenticated-Enveloped-Data Content Type"</span>, <span class="seriesInfo">RFC 5083</span>, <span class="seriesInfo">DOI 10.17487/RFC5083</span>, <time datetime="2007-11" class="refDate">November 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5083">https://www.rfc-editor.org/info/rfc5083</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5652">[RFC5652]</dt>
<dd>
<span class="refAuthor">Housley, R.</span>, <span class="refTitle">"Cryptographic Message Syntax (CMS)"</span>, <span class="seriesInfo">STD 70</span>, <span class="seriesInfo">RFC 5652</span>, <span class="seriesInfo">DOI 10.17487/RFC5652</span>, <time datetime="2009-09" class="refDate">September 2009</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5652">https://www.rfc-editor.org/info/rfc5652</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="ESS">
<section id="section-18.2.2">
<h4 id="name-ess-references">
<a href="#name-ess-references" class="section-name selfRef">ESS References</a>
</h4>
<dl class="references">
<dt id="RFC2634">[RFC2634]</dt>
<dd>
<span class="refAuthor">Hoffman, P., Ed.</span>, <span class="refTitle">"Enhanced Security Services for S/MIME"</span>, <span class="seriesInfo">RFC 2634</span>, <span class="seriesInfo">DOI 10.17487/RFC2634</span>, <time datetime="1999-06" class="refDate">June 1999</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2634">https://www.rfc-editor.org/info/rfc2634</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5035">[RFC5035]</dt>
<dd>
<span class="refAuthor">Schaad, J.</span>, <span class="refTitle">"Enhanced Security Services (ESS) Update: Adding CertID Algorithm Agility"</span>, <span class="seriesInfo">RFC 5035</span>, <span class="seriesInfo">DOI 10.17487/RFC5035</span>, <time datetime="2007-08" class="refDate">August 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5035">https://www.rfc-editor.org/info/rfc5035</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="MIME-SPEC">
<section id="section-18.2.3">
<h4 id="name-mime-spec-references">
<a href="#name-mime-spec-references" class="section-name selfRef">MIME-SPEC References</a>
</h4>
<dl class="references">
<dt id="RFC2045">[RFC2045]</dt>
<dd>
<span class="refAuthor">Freed, N.</span> and <span class="refAuthor">N. Borenstein</span>, <span class="refTitle">"Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies"</span>, <span class="seriesInfo">RFC 2045</span>, <span class="seriesInfo">DOI 10.17487/RFC2045</span>, <time datetime="1996-11" class="refDate">November 1996</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2045">https://www.rfc-editor.org/info/rfc2045</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC2046">[RFC2046]</dt>
<dd>
<span class="refAuthor">Freed, N.</span> and <span class="refAuthor">N. Borenstein</span>, <span class="refTitle">"Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types"</span>, <span class="seriesInfo">RFC 2046</span>, <span class="seriesInfo">DOI 10.17487/RFC2046</span>, <time datetime="1996-11" class="refDate">November 1996</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2046">https://www.rfc-editor.org/info/rfc2046</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC2047">[RFC2047]</dt>
<dd>
<span class="refAuthor">Moore, K.</span>, <span class="refTitle">"MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text"</span>, <span class="seriesInfo">RFC 2047</span>, <span class="seriesInfo">DOI 10.17487/RFC2047</span>, <time datetime="1996-11" class="refDate">November 1996</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2047">https://www.rfc-editor.org/info/rfc2047</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC2049">[RFC2049]</dt>
<dd>
<span class="refAuthor">Freed, N.</span> and <span class="refAuthor">N. Borenstein</span>, <span class="refTitle">"Multipurpose Internet Mail Extensions (MIME) Part Five: Conformance Criteria and Examples"</span>, <span class="seriesInfo">RFC 2049</span>, <span class="seriesInfo">DOI 10.17487/RFC2049</span>, <time datetime="1996-11" class="refDate">November 1996</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2049">https://www.rfc-editor.org/info/rfc2049</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4289">[RFC4289]</dt>
<dd>
<span class="refAuthor">Freed, N.</span> and <span class="refAuthor">J. Klensin</span>, <span class="refTitle">"Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures"</span>, <span class="seriesInfo">BCP 13</span>, <span class="seriesInfo">RFC 4289</span>, <span class="seriesInfo">DOI 10.17487/RFC4289</span>, <time datetime="2005-12" class="refDate">December 2005</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4289">https://www.rfc-editor.org/info/rfc4289</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6838">[RFC6838]</dt>
<dd>
<span class="refAuthor">Freed, N.</span>, <span class="refAuthor">Klensin, J.</span>, and <span class="refAuthor">T. Hansen</span>, <span class="refTitle">"Media Type Specifications and Registration Procedures"</span>, <span class="seriesInfo">BCP 13</span>, <span class="seriesInfo">RFC 6838</span>, <span class="seriesInfo">DOI 10.17487/RFC6838</span>, <time datetime="2013-01" class="refDate">January 2013</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6838">https://www.rfc-editor.org/info/rfc6838</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<section id="section-18.2.4">
<h4 id="name-other-references">
<a href="#name-other-references" class="section-name selfRef">Other References</a>
</h4>
<dl class="references">
<dt id="AUTHORS">[AUTHORS]</dt>
<dd>
<span class="refAuthor"><span class="non-ascii">Πυθαγόρας ὁ Σάμιος</span> (<span class="ascii">Samos, P. O.</span>)</span>, <span class="refAuthor">Doe, J.</span>, <span class="refAuthor">Bergström, A.</span>, and <span class="refAuthor">J. Doe</span>, <span class="refTitle">"Lots of authors"</span>, <span class="seriesInfo">RFC 7539</span>, <span class="seriesInfo">DOI 10.17487/RFC7539</span>, <time datetime="2015-05" class="refDate">May 2015</time>, <span><<a href="https://www.rfc-editor.org/rfc/rfc7539">https://www.rfc-editor.org/rfc/rfc7539</a>></span>. </dd>
<dd class="break"></dd>
<dt id="DATE-RANGE">[DATE-RANGE]</dt>
<dd>
<span class="refAuthor">Moe, J.</span>, <span class="refTitle">"Document with date range"</span>, <span>2002-2003</span>. </dd>
<dd class="break"></dd>
<dt id="FUZZY-DATE">[FUZZY-DATE]</dt>
<dd>
<span class="refAuthor">Mae, J.</span>, <span class="refTitle">"Document with fuzzy date"</span>, <span>Second quarter 2010</span>. </dd>
<dd class="break"></dd>
<dt id="GEDICHTE">[GEDICHTE]</dt>
<dd>
<span class="refAuthor">Heine, H.</span>, <span class="refTitle">"Dreiunddreißig Gedichte"</span>, <time datetime="1824" class="refDate">1824</time>. </dd>
<dd class="break"></dd>
<dt id="NO-DATE">[NO-DATE]</dt>
<dd>
<span class="refAuthor">Mae, N.</span>, <span class="refTitle">"Document — with no date"</span>, <span class="seriesInfo">Advances in Cryptology – AACC Edition pp. 235-265</span>. </dd>
<dd class="break"></dd>
<dt id="REPUBLIC">[REPUBLIC]</dt>
<dd>
<span class="refAuthor"><span class="non-ascii">Πλάτων</span> (<span class="ascii">Plato</span>)</span>, <span class="refTitle"><span class="non-ascii">"Πολιτεία"</span> (<span class="ascii">"The Republic"</span>)</span>, <span>375 BC</span>. </dd>
<dd class="break"></dd>
<dt id="RFC0952">[RFC0952]</dt>
<dd>
<span class="refAuthor">Harrenstien, K.</span>, <span class="refAuthor">Stahl, M.</span>, and <span class="refAuthor">E. Feinler</span>, <span class="refTitle">"DoD Internet host table specification"</span>, <span class="seriesInfo">RFC 952</span>, <span class="seriesInfo">DOI 10.17487/RFC0952</span>, <time datetime="1985-10" class="refDate">October 1985</time>, <span><<a href="https://www.rfc-editor.org/info/rfc952">https://www.rfc-editor.org/info/rfc952</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</section>
</section>
</div>
<div id="back-matter">
<section id="appendix-A">
<h2 id="name-some-back-matter">
<a href="#appendix-A" class="section-number selfRef">Appendix A. </a><a href="#name-some-back-matter" class="section-name selfRef">Some Back Matter</a>
</h2>
<p id="appendix-A-1">
Fusce viverra ipsum tempor finibus pharetra. Vestibulum fermentum
porta neque et maximus. Aliquam tristique nibh in neque aliquam
pharetra. Sed sapien felis, efficitur at finibus et, porttitor non
quam. Nulla a ultrices nibh, ac commodo lacus. Integer vitae lorem ut
sapien venenatis maximus. Morbi ut faucibus nunc, vitae pretium
lorem. Aliquam sit amet tortor ut turpis dapibus ullamcorper. Proin
at ligula nec magna molestie eleifend: <br>
<span class="contact-name"><span class="non-ascii">トヨタ 自動車 株式会社</span> (<span class="ascii">Toyota Jidōsha KK</span>)</span>.
<span class="cref"> This is a long comment line which extends well beyond the 72-character page width. </span><a href="#appendix-A-1" class="pilcrow">¶</a></p>
<section id="appendix-A.1">
<h3 id="name-contributors">
<a href="#appendix-A.1" class="section-number selfRef">A.1. </a><a href="#name-contributors" class="section-name selfRef">Contributors</a>
</h3>
<p id="appendix-A.1-1">We'd like to thank these contributors:<a href="#appendix-A.1-1" class="pilcrow">¶</a></p>
<address class="vcard">
<div class="ascii">
<div dir="auto" class="left"><span class="fn nameRole">Roni Even</span></div>
<div dir="auto" class="left"><span class="org">Huawei</span></div>
<div dir="auto" class="left"><span class="street-address">David Hamelech 14</span></div>
<div dir="auto" class="left">
<span class="locality">Tel Aviv</span> <span class="postal-code">64953</span>
</div>
<div dir="auto" class="left"><span class="country-name">Israel</span></div>
</div>
<div class="alternative-contact">Additional contact information:</div>
<div class="non-ascii">
<div dir="auto" class="right"><span class="fn nameRole">רוני אבן</span></div>
<div dir="auto" class="right"><span class="org">וואווי</span></div>
<div dir="auto" class="right"><span class="street-address">דוד המלך 14</span></div>
<div dir="auto" class="right">
<span class="locality">תל אביב</span> <span class="postal-code">64953</span>
</div>
<div dir="auto" class="right"><span class="country-name">ישראל</span></div>
</div>
</address>
<p id="appendix-A.1-2">
Reviews and helpful comments have also been received from
<span class="contact-name"><span class="non-ascii">ანა კიკაბიძე</span> (<span class="ascii">Ana Kikabidze</span>)</span>
and
Org: <span class="contact-name">TEST</span><a href="#appendix-A.1-2" class="pilcrow">¶</a></p>
</section>
<section id="appendix-A.2">
<h3 id="name-arbitrary-superscript-in-se">
<a href="#appendix-A.2" class="section-number selfRef">A.2. </a><a href="#name-arbitrary-superscript-in-se" class="section-name selfRef">Arbitrary<sup>superscript</sup> in section <em>title</em></a>
</h3>
<p id="appendix-A.2-1">Arbitrary text<a href="#appendix-A.2-1" class="pilcrow">¶</a></p>
</section>
</section>
</div>
<div id="authors-addresses">
<section id="appendix-B">
<h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
</h2>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">An Author</span></div>
<div dir="auto" class="left"><span class="org">ElfTools</span></div>
<div dir="auto" class="left"><span class="street-address">Midtskogveien 18</span></div>
<div dir="auto" class="left">
<span class="postal-code">2020</span> <span class="locality">Skedsmokorset</span>
</div>
<div dir="auto" class="left"><span class="country-name">Norway</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:henrik@levkowetz.com" class="email">henrik@levkowetz.com</a>, <a href="mailto:henrik@tools.ietf.org" class="email">henrik@tools.ietf.org</a>
</div>
</address>
<address class="vcard">
<div class="ascii">
<div dir="auto" class="left"><span class="fn nameRole">Roni Even</span></div>
<div dir="auto" class="left"><span class="org">Huawei</span></div>
<div dir="auto" class="left"><span class="street-address">David Hamelech 14</span></div>
<div dir="auto" class="left">
<span class="locality">Tel Aviv</span> <span class="postal-code">64953</span>
</div>
<div dir="auto" class="left"><span class="country-name">Israel</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:ron.even.tlv@gmail.com" class="email">ron.even.tlv@gmail.com</a>
</div>
</div>
<div class="alternative-contact">Additional contact information:</div>
<div class="non-ascii">
<div dir="auto" class="right"><span class="fn nameRole">רוני אבן</span></div>
<div dir="auto" class="right"><span class="org">וואווי</span></div>
<div dir="auto" class="right"><span class="street-address">דוד המלך 14</span></div>
<div dir="auto" class="right">
<span class="locality">תל אביב</span> <span class="postal-code">64953</span>
</div>
<div dir="auto" class="right"><span class="country-name">ישראל</span></div>
</div>
</address>
<address class="vcard">
<div class="ascii">
<div dir="auto" class="left"><span class="fn nameRole">Hanako Tanaka</span></div>
<div dir="auto" class="left"><span class="extended-address">3-kai B-goshitsu</span></div>
<div dir="auto" class="left">
<span class="street-address">4-3-2 Hakusan, Bunkyo-ku</span>, <span class="region">Tokyo</span>
</div>
<div dir="auto" class="left"><span class="postal-code">112-0001</span></div>
<div dir="auto" class="left"><span class="country-name">Japan</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:hanako.tanaka@nihon.example" class="email">hanako.tanaka@nihon.example</a>
</div>
</div>
<div class="alternative-contact">Additional contact information:</div>
<div class="non-ascii">
<div dir="auto" class="left"><span class="fn nameRole">田中花子 様</span></div>
<div dir="auto" class="left"><span class="country-name">日本</span></div>
<div dir="auto" class="left">〒<span class="postal-code">112-0001</span>
</div>
<div dir="auto" class="left"><span class="region">東京都</span></div>
<div dir="auto" class="left"><span class="street-address">文京区 白山4丁目3番2号</span></div>
<div dir="auto" class="left"><span class="extended-address">3階B号室</span></div>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">No Org</span></div>
<div dir="auto" class="left"><span class="region">Tokyo</span></div>
<div dir="auto" class="left"><span class="postal-code">112-0001</span></div>
<div dir="auto" class="left"><span class="country-name">Japan</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:no@org.example.org" class="email">no@org.example.org</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Bon Aventure</span></div>
<div dir="auto" class="left"><span class="org">Université de Liège</span></div>
<div dir="auto" class="left"><span class="street-address">Place du 20 Août 7</span></div>
<div dir="auto" class="left">
<span class="postal-code">4000</span> <span class="locality">Liège</span>
</div>
<div dir="auto" class="left"><span class="country-name">Belgium</span></div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="org">International Association for Cryptologic Research</span></div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">A. Lindgren</span></div>
<div dir="auto" class="left"><span class="extended-address">Mellangården</span></div>
<div dir="auto" class="left"><span class="street-address">Sevedstorp 125</span></div>
<div dir="auto" class="left"><span class="locality">Mariannelund</span></div>
<div dir="auto" class="left"><span class="country-name">Sweden</span></div>
</address>
</section>
</div>
<script>const toc = document.getElementById("toc");
toc.querySelector("h2").addEventListener("click", e => {
toc.classList.toggle("active");
});
toc.querySelector("nav").addEventListener("click", e => {
toc.classList.remove("active");
});
</script>
</body>
</html>
|