Sharing code in the forums

To add to that, you can even do the below to specify the language, though Discourse seems to be doing a pretty good job at auto-detecting the language:

```css
.post-date {
    /* Italicize the date stamp */
    font-style: italic;
    margin-top: -0.5em;
    margin-bottom: 0.3em;
}
```

I was able to show the triple-backquotes block above because I wrapped that with a quadruple-backticks block … like this:

````
```css
.post-date {
    /* Italicize the date stamp */
    font-style: italic;
    margin-top: -0.5em;
    margin-bottom: 0.3em;
}
```
````

And I was able to show the quadruple-backticks wrapped block as I wrapped that with quintuple-backticks block :sunglasses:

Now I am not going to show the quintuple backticks block by wrapping that with sextuple-backticks wrapping :smile:

4 Likes