Skip to main content
2 of 2
added 122 characters in body; Post Made Community Wiki
200_success Mod
  • 145.7k
  • 4
  • 114
  • 284

Normally, code blocks are formatted using four spaces of indentation:

var string = 'string';
  • In a list, code blocks require eight spaces:

      var string = 'string';
    
  • After a list, a code block can be made using four spaces of indentation, but it needs to be after an intervening <!-- comment -->.

var string = 'string';
Quill
  • 12.1k
  • 20
  • 33