If you want to publish a guide you can make your own HTML file or, copy this file and follow the instructions within it to create a simple guide page
Each paragraph should be entered inside an opening
tags.
like this:
<p> and a closing <</p>
<p>This is a paragraph about selecting features by location </p>
every image you want to add should be added to the img folder within the toolbox folder.
after the image file exists within the img folder you should enter it into an <img>
tag:
<img src="img/select_by_location.png" width="250" height="250"/>
width and height are set in pixles and you can change them to make sure the image is shown properly.
if you want to add code blocks you can enter them just like text paragraphs inside <code>
tags.
And that's it, just add as many paragraphs and images as you need.
The file you submit should look like this:
<html>
<head>
<title>Your Title<title>
</head>
<body>
<p>A paragraph about selecting by location or something like that</p>
<img src="img/select_by_location.png" width="250" height="250"/>
<p>another paragraph about the image you posted<p>
<code>some code you want to share</code>
</body>
</html>