Hayden Hargreaves 408fd5fc2e (FEAT): Completed watchdog v2 updates.
This works the way expected, all thats left is the CLI and the command
arg parser.
2025-10-29 15:09:45 -07:00

25 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>Reference [here](https://www.markdownguide.org/basic-syntax/)</p>
<p>Headings, h# tags</p>
<h1>Header Level 1 -> <h1> Content </h1> ## Header Level 2 -> <h2> Content </h2> ### Header Level 3 -> <h3> Content </h3> #### Header Level 4 -> <h4> Content </h4> ##### Header Level 5 -> <h5> Content </h5> ###### Header Level 6 -> <h6> Content </h6></h1>
<p>Alternate syntax (n number of =/-)</p>
<p>Header Level 1 -> <h1> Content </h1> ================</p>
<p>Header Level 2 -> <h2> Content </h2> ----------------</p>
<p>Paragraph tags</p>
<p>Hello world -> <p> Hello world </p></p>
<p>This is also a paragraph -> <p> this is also a paragraph regardless </p> regardless </p>
<p>However this is a break, because it ends with two spaces -> <p> However <br> this is a break, because it ends with two spaces </p></p>
<p>Double returns also</p>
<p>yields new paragraphs -> <p> Double returns also</p> <p> yields new paragraphs </p></p>
<p><em>italic</em> -> <em>italic</em> <strong>bold</strong> -> <strong>bold</strong> <strong><em>italic bold</em></strong> -> <strong><em>italic bold</em></strong></p>
<p>hello <strong>world</strong> -> [TextClass: hello, BoldClass: world] </p>
</body>
</html>