substance
Version:
Substance is a JavaScript library for web-based content editing. It provides building blocks for realizing custom text editors and web-based publishing systems.
25 lines (24 loc) • 619 B
HTML
<html lang="en">
<head>
<!-- Title is only there to calm down the validator. Do not edit -->
<title>🐰</title>
<meta charset="utf-8" />
</head>
<body>
<header>
<!-- We use RDFa property attributes to mark object props -->
<div typeof="meta" id="meta">
<h1 property="title">Test Article</h1>
</div>
</header>
<main>
<h1 id="h1">Section 1</h1>
<p id="p1">Paragraph 1</p>
<h1 id="h2">Section 2</h1>
<p id="p2">Paragraph 2</p>
<h2 id="h3">Section 2.1</h2>
<p id="p3">Paragraph 3</p>
</main>
</body>
</html>