Skip to content

Commit b7efd94

Browse files
authored
Merge pull request github#28204 from github/repo-sync
repo sync
2 parents 00c7395 + 07a8a4c commit b7efd94

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ You can temporarily obscure sections of your Markdown by creating a collapsed se
1616

1717
Any Markdown within the `<details>` block will be collapsed until the reader clicks {% octicon "triangle-right" aria-label="The right triange icon" %} to expand the details. Within the `<details>` block, use the `<summary>` tag to create a label to the right of {% octicon "triangle-right" aria-label="The right triange icon" %}.
1818

19-
```markdown
19+
````markdown
2020
<details><summary>CLICK ME</summary>
2121
<p>
2222

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

25-
```ruby
26-
puts "Hello World"
27-
```
25+
```ruby
26+
puts "Hello World"
27+
```
2828

2929
</p>
3030
</details>
31-
```
31+
````
3232

3333
The Markdown will be collapsed by default.
3434

0 commit comments

Comments
 (0)