From 22fc99d521eed9ace32fc6a69374f829f5cc6614 Mon Sep 17 00:00:00 2001 From: HustLion Date: Wed, 27 Jul 2016 19:31:21 +0800 Subject: [PATCH] Reformat code block --- README.md | 60 +++++++++++++++++++++++++++---------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/README.md b/README.md index 202c7fb35..db2a011de 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,11 @@ The code below would render the following image
                 
-                    graph TD;
-                        A-->B;
-                        A-->C;
-                        B-->D;
-                        C-->D;
+graph TD;
+    A-->B;
+    A-->C;
+    B-->D;
+    C-->D;
                 
             
@@ -33,17 +33,17 @@ The code below would render the following image
                 
-                    sequenceDiagram
-                        participant Alice
-                        participant Bob
-                        Alice->>John: Hello John, how are you?
-                        loop Healthcheck
-                        John->>John: Fight against hypochondria
-                        end
-                        Note right of John: Rational thoughts <br/>prevail...
-                        John-->>Alice: Great!
-                        John->>Bob: How about you?
-                        Bob-->>John: Jolly good!
+sequenceDiagram
+    participant Alice
+    participant Bob
+    Alice->>John: Hello John, how are you?
+    loop Healthcheck
+    John->>John: Fight against hypochondria
+    end
+    Note right of John: Rational thoughts <br/>prevail...
+    John-->>Alice: Great!
+    John->>Bob: How about you?
+    Bob-->>John: Jolly good!
                 
             
@@ -55,20 +55,20 @@ The code below would render the following image
                 
-                    classDiagram
-                        Class01 <|-- AveryLongClass : Cool
-                        Class03 *-- Class04
-                        Class05 o-- Class06
-                        Class07 .. Class08
-                        Class09 --> C2 : Where am i?
-                        Class09 --* C3
-                        Class09 --|> Class07
-                        Class07 : equals()
-                        Class07 : Object[] elementData
-                        Class01 : size()
-                        Class01 : int chimp
-                        Class01 : int gorilla
-                        Class08 <--> C2: Cool label
+classDiagram
+    Class01 <|-- AveryLongClass : Cool
+    Class03 *-- Class04
+    Class05 o-- Class06
+    Class07 .. Class08
+    Class09 --> C2 : Where am i?
+    Class09 --* C3
+    Class09 --|> Class07
+    Class07 : equals()
+    Class07 : Object[] elementData
+    Class01 : size()
+    Class01 : int chimp
+    Class01 : int gorilla
+    Class08 <--> C2: Cool label