Fix indenting for code in list
Markdown requires 8 spaces for code in lists. Ref: https://github.com/awesomeWM/awesome/pull/752#issuecomment-194182994
This commit is contained in:
parent
19d0cbdb65
commit
d4218da053
|
@ -16,14 +16,14 @@ Imitate the existing code style. For concrete rules:
|
|||
- Place braces alone on new lines, and do not place braces for single
|
||||
line statement where it is not needed, i.e.:
|
||||
|
||||
if(foo)
|
||||
x = 1;
|
||||
if(foo)
|
||||
x = 1;
|
||||
|
||||
if(foo)
|
||||
{
|
||||
x = 1;
|
||||
bar();
|
||||
}
|
||||
if(foo)
|
||||
{
|
||||
x = 1;
|
||||
bar();
|
||||
}
|
||||
|
||||
- Do not put a space after if, for, while or function call statements;
|
||||
|
||||
|
|
Loading…
Reference in New Issue