Extra HTML tips
You can use both Markdown and HTML with editing Rebel Toolkit pages.
You can learn more HTML from various website or YouTube videos, but here are some simple bits of HTML code that might be useful on the Rebel Toolkit:
Bold
<b>Write your bold text here</b>
This will look like:
Write your bold text here
Which is the same as using the Markdown of a double asterix (like this **)
**Write your bold text here**
Write your bold text here
Drop-down expanding text box
Example
Detailed textUsing this code you can create the drop-down content box shown above:
<details><summary><span style="color: blue;">Put your title here</span></summary>
Then add your longer text here in the drop-down section. You won't be able to use markdown because it's inside html, but you can use other html to help lay out this, e.g. <b>BOLD</b>
or a <br>line break
to continue with more content on a fresh line. End with
</details>
Complete code to copy:
<details><summary><span style="color: blue;">Title</span></summary> DetailedText</details>
Note: On this page the use of a 'backtick' is used (one of these `) around parts of the page to allow you see the code.
Comments
You can either use this mechanism to hide some html temporarily or to add comments to be seen by subsequent editors of the page, but which will not appear on the final rendered page.
<!-- Write your comment here. You can use this over multiple rows and it will all be hidden as long as you end with -->