hacker icon indicating copy to clipboard operation
hacker copied to clipboard

collapsed section failing

Open AzlanCoding opened this issue 3 years ago • 3 comments

I'm testing the hacker theme to the limits. Not everything works but 1 thing I really want is the collapsed section to work. See my site at hacker-theme-test image The section is colapsable but the things within the section is not cssed. This is the "code" in the .md file

<details><summary>CLICK ME</summary>
<p>

#### We can hide anything, even code!

```python
   print("Hello World")
```

</p>
</details>

AzlanCoding avatar Jun 04 '22 10:06 AzlanCoding

I also got this error, probably not from this colapse GET https://azlancoding.github.io/assets/images/black-dot.png 404

AzlanCoding avatar Jun 04 '22 10:06 AzlanCoding

I tried removing <p> it doesn't help

AzlanCoding avatar Jun 04 '22 10:06 AzlanCoding

I found a workaround but it's very difficult when there is a lot of stuff

<details><summary>CLICK ME</summary>


<h4 id="header-4">We can hide anything, even code!</h4>

<pre><code>print("Hello World")
</code></pre>



</details>
CLICK ME

We can hide anything, even code!

print("Hello World")

AzlanCoding avatar Jun 04 '22 11:06 AzlanCoding