diff --git a/content/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md b/content/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md index e99cd3a9f2..1cccbccd66 100644 --- a/content/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md +++ b/content/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections.md @@ -16,19 +16,19 @@ You can temporarily obscure sections of your Markdown by creating a collapsed se Any Markdown within the `
` block will be collapsed until the reader clicks {% octicon "triangle-right" aria-label="The right triange icon" %} to expand the details. Within the `
` block, use the `` tag to create a label to the right of {% octicon "triangle-right" aria-label="The right triange icon" %}. -```markdown +````markdown
CLICK ME

#### We can hide anything, even code! - ```ruby - puts "Hello World" - ``` +```ruby + puts "Hello World" +```

-``` +```` The Markdown will be collapsed by default.