11

The title pretty much says it all: I'd like to write a paragraph in monospaced font using GFM, but without any programming language's syntax highlighting. I'd think it would be

```txt

or

```text

or maybe nothing:

```

But no luck. Is this even possible with GFM?

Caleb P
  • 341
  • 1
  • 2
  • 15
  • Better for either [Web Apps](http://webapps.stackexchange.com) (since it has nothing to do with coding) or direct to GitHub:Support – random Oct 28 '13 at 02:51
  • This also doesn't work in gitter ... awful when trying to paste compiler messages. – Luciano Mar 06 '18 at 10:32

1 Answers1

9

Try indenting with four spaces (i.e. a normal markdown code block) rather than using a fenced code block. This worked for me in GitLab. In GitHub just ``` worked.

Phil Holden
  • 194
  • 8