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

InsteadNormally, code blocks are formatted using four spaces of normally formatting the post with one indentations (four spaces)indentation:

var string = 'string';

In a list, it requires double indentations (eight spaces):

  • List itemIn 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';

Instead of normally formatting the post with one indentations (four spaces):

var string = 'string';

In a list, it requires double indentations (eight spaces):

  • List item:

     var string = 'string';
    

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';
Source Link
Quill
  • 12.1k
  • 20
  • 33

Instead of normally formatting the post with one indentations (four spaces):

var string = 'string';

In a list, it requires double indentations (eight spaces):

  • List item:

     var string = 'string';