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.
1 lines • 731 B
JavaScript
export default "<html lang=\"en\">\r\n <head>\r\n <!-- Title is only there to calm down the validator. Do not edit -->\r\n <title>🐰</title>\r\n <meta charset=\"utf-8\" />\r\n </head>\r\n <body>\r\n <header>\r\n <!-- We use RDFa property attributes to mark object props -->\r\n <div typeof=\"meta\" id=\"meta\">\r\n <h1 property=\"title\">Test Article</h1>\r\n </div>\r\n </header>\r\n <main>\r\n <h1 id=\"h1\">Section 1</h1>\r\n <p id=\"p1\">Paragraph 1</p>\r\n <h1 id=\"h2\">Section 2</h1>\r\n <p id=\"p2\">Paragraph 2</p>\r\n <h2 id=\"h3\">Section 2.1</h2>\r\n <p id=\"p3\">Paragraph 3</p>\r\n </main>\r\n </body>\r\n</html>\r\n";
\r\n