1
0
mirror of synced 2025-12-20 10:28:40 -05:00
Files
docs/content/get-started/writing-on-github/working-with-advanced-formatting
perpil 401edab39f Update organizing-information-with-collapsed-sections.md
Escape code block to allow nested code blocks correctly per [this](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks#fenced-code-blocks).  Currently, copying the code and pasting into a github wiki doesn't render the code block as syntax highlighted code like the screenshot.

It looks like this:

<details><summary>CLICK ME</summary>
<p>

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

    ```ruby
      puts "Hello World"
    ```

</p>
</details>

Not this:

<details><summary>CLICK ME</summary>
<p>

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

```ruby
   puts "Hello World"
```

</p>
</details>
2022-05-31 11:48:56 -07:00
..
2022-01-25 12:43:09 +01:00
2022-05-19 21:29:53 -05:00