<p>put script pics in the folder and link them here with <img></p>
<img src="backpack.png">
go to chrome://extensions, enable developer mode, load unpacked, select the folder, pin the new extension, and now you can drag script pics from it to the editor whenever you need
I looked it up, and it's just a more strict version of html. As in, if there are any errors, it won't try to render the page, whereas browsers will try to render html no matter how many errors there are.
No, because it's still in Snap! Feature Requests, and part of the topic is about the feature proposal. I think that @tethrarxitet should create a new topic.
HTML and XML are nearly one in the same syntax-wise, whereas HTML has a dedicated purpose and XML is just a general-purpose markup language (not to say that HTML isn't that either) with slightly stricter rules. Some guys in like 1998 thought it would be a genius idea to make a version of HTML that is strictly using the syntax of XML, so all tags have to have a closing tag AND be closed in the order they were opened or else it will not render. Also, self closing/single tags (such as <img> or <input>) must.. well self close, meaning all self closing tags must have a slash at the end, such as <img /> and <input />
Basically "use strict"; but for HTML (well I guess that would be things such as not rendering if unordered closing tags and if using obsolete/non-existent tags)