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
@rubek-joshi It is possible but there is a catch, it can't be markdown formatting because a new line is required for markdown parsers to parse and render them.
So this is possible
Somebold textcode.go
linkBut not with markdown but with HTML tags
can use markdown
ifyou don't mind anewline
in your summary linkinterface{}
i.e.
You can go even crazier and have a multiline image, stack trace, etc. in the summary
Like this