Add magic newlines to markdown files.
Change-Id: I225ecab48a7d3d0a04390c5535cf5b65709fd758
Reviewed-on: https://chromium-review.googlesource.com/311072
Reviewed-by: Shannon Woods <shannonwoods@chromium.org>
Tested-by: Shannon Woods <shannonwoods@chromium.org>
diff --git a/doc/CodingStandard.md b/doc/CodingStandard.md
index cbf6380..476f775 100644
--- a/doc/CodingStandard.md
+++ b/doc/CodingStandard.md
@@ -61,6 +61,7 @@
Use the following guidelines, they do deviate somewhat from the Google
guidelines.
+
* class and type names: start with capital letter and use CamelCase.
* {DEV} class member variables: use an **`m`** prefix instead of trailing
underscore and use CamelCase.
@@ -78,6 +79,7 @@
* {DO} read and follow Google's recommendations.
* Each file **must** start with the following boilerplate notice:
+
```
//
// Copyright (c) 2002-2011 The ANGLE Project Authors. All rights reserved.
@@ -108,6 +110,7 @@
line.
Examples:
+
```
if (conditional)
{
@@ -118,6 +121,7 @@
otherstuff()
}
```
+
```
switch (conditional)
{
@@ -131,6 +135,7 @@
WTFBBQ();
}
```
+
```
class MyClass : public Foo
{
@@ -141,6 +146,7 @@
DISALLOW_COPY_AND_ASSIGN(MyClass);
};
```
+
```
char *c;
const string &str;