Inline HTML comments are often used by educators to annotate projects that they share with their students.
What if we had an automatic way to convert HMTL comments inside of an editor into a cool step-by-step walkthrough?
Turn on fancy comments and try it out...
Note: I'm faking the multi-line highlight but I've got some ideas for how to make it work automatically!
<html>
<body>
<!-- This is a paragraph, use it to add text! -->
<p> Hello World</p>
<!-- This is an unordered list. You can add as many items as you want! When viewed, bullets will be added automatically! -->
<ul> <li> List Item 1</li> <li> List Item 2</li> <li> List Item 2</li> </ul>
</body> </html>