From: Andre Noll Date: Mon, 8 Nov 2021 10:43:49 +0000 (+0100) Subject: manual: Avoid vertical space between coding style items. X-Git-Tag: v0.7.0~1^2~10 X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=0a6dc8f07a2e479afb67113e7efdb2df5f6b68c9;p=paraslash.git manual: Avoid vertical space between coding style items. For some reason markdown inserts vertical space between adjacent items if the code example is not enclosed in
...
. --- diff --git a/web/manual.md b/web/manual.md index d73263b3..ab678420 100644 --- a/web/manual.md +++ b/web/manual.md @@ -2075,11 +2075,11 @@ here are the most important points. - Don't leave whitespace at the end of lines. - The limit on the length of lines is 80 columns. - Use K&R style for placing braces and spaces: - +
 		if (x is true) {
 			we do y
 		}
-
+
- Use a space after (most) keywords. - Do not add spaces around (inside) parenthesized expressions. - Use one space around (on each side of) most binary and ternary operators.