pages-themes / hacker

Hacker is a Jekyll theme for GitHub Pages

Home Page:https://pages-themes.github.io/hacker/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

collapsed section failing

AzlanCoding opened this issue · 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>

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")