hacker
hacker copied to clipboard
collapsed section failing
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
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>
I also got this error, probably not from this colapse GET https://azlancoding.github.io/assets/images/black-dot.png 404
I tried removing <p> it doesn't help
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")