I'm using nested collapsible for a draft and I want to link to a URL at some point in it, but I can't get a link to work.
Below is a visualization:
<div class="block1">
<p><a onclick="collapsibleLink('block1');">Collapsible 1</a></p>
</div>
<div class="block1 collapsed">
<p><a onclick="collapsibleLink('block1');">omg u opened me</a></p>
<p> **THE LINK WOULD GO HERE**
</p>
<div class="block2">
<p><a onclick="collapsibleLink('block2');">Collapsible 2</a></p>
</div>
<div class="block2 collapsed">
<p><a onclick="collapsibleLink('block2');">you opened me again!</a></p>
<p><blockquote>text text all day long<p>text text text while i type this song
</div>
</div>
To see the actual code in action, it's being used here at the bottom of the tab labelled "SCP11". I would've bolded the area in question that I want to insert the link, but I can't bold or italic or underline or ANYTHING in this coded window.