How do you add a code block to a pull request description on github?

2.6k Views Asked by At

Typing HTML does not work when I want to show a Code Block.

1

There are 1 best solutions below

0
On

As stated in the documentation, use a triple backticks on its own line. Optionally, you can add the language next to it in order to activate the syntax highlighting mode.

```ruby
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
```