Suppose you're opening an issue and there's a lot noisey logs that may be useful.
Rather than wrecking readability, wrap it in a <details>
tag!
<details>
<summary>Summary Goes Here</summary>
...this is hidden, collapsable content...
</details>
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
Click to expand!
def func():
return 'hello, world!'
root
bin
nest1
a b c
nest2
a b c
file1 file2 file3
boot
x y z
dev
p q r
etc
e t c
home
me you everyone
lib
lib er ate
No problem! Also, thanks for the info on the highlight syntax for Jekyll! :)
Were you able to get that to work on github.com as well? I couldn't find a way that didn't show the
{% highlight python %}
start and end tag in the code block, but I'm relatively new to Jekyll.