Updated Getting Started with Embedding (markdown)
diff --git a/Getting-Started-with-Embedding.md b/Getting-Started-with-Embedding.md
index c82559d..6d036c4 100644
--- a/Getting-Started-with-Embedding.md
+++ b/Getting-Started-with-Embedding.md
@@ -22,20 +22,31 @@
 
 1. Download the V8 source code by following the [[git|Using-Git]] instructions.
 1. The instructions for this hello world example has last been tested with V8 7.1.11. You can check out this branch with `git checkout refs/tags/7.1.11 -b sample -t`
-1. Create a build configuration using the helper script: `tools/dev/v8gen.py x64.release.sample`. You can inspect and manually edit the build configuration by running `gn args out.gn/x64.release.sample`.
-1. Build via `ninja -C out.gn/x64.release.sample v8_monolith` on a Linux x64 system to generate the static library.
-1. Compile `hello-world.cc`, linking to the static library created in the build process. For example, on 64bit Linux using the GNU compiler:
-
+1. Create a build configuration using the helper script:
     ```bash
-   g++ -I. -Iinclude samples/hello-world.cc -o hello_world -lv8_monolith -Lout.gn/x64.release.sample/obj/ -pthread -std=c++0x
+    tools/dev/v8gen.py x64.release.sample
+    ```
+    You can inspect and manually edit the build configuration by running
+    ```bash
+    gn args out.gn/x64.release.sample
+    ```
+1. Build the static library on a Linux 64 system:
+    ```bash
+    ninja -C out.gn/x64.release.sample v8_monolith
+    ```
+1. Compile `hello-world.cc`, linking to the static library created in the build process. For example, on 64bit Linux using the GNU compiler:
+    ```bash
+    g++ -I. -Iinclude samples/hello-world.cc -o hello_world -lv8_monolith -Lout.gn/x64.release.sample/obj/ -pthread -std=c++0x
     ```
 1. For more complex code, V8 will fail without an ICU data file. Copy this file to where your binary is stored: 
     ```bash
-   cp out.gn/x64.release.sample/icudtl.dat .
+    cp out.gn/x64.release.sample/icudtl.dat .
     ```
 1. Run the `hello_world` executable file at the command line.
 e.g. On Linux, in the V8 directory, run:
-`./hello_world`
+    ```bash
+    ./hello_world
+    ```
 1. You will see `Hello, World!`.
 
 Of course this is a very simple example and it's likely you'll want to do more than just execute scripts as strings! For more information see the [[Embedder's Guide|Embedder's Guide]]. If you are looking for an example which is in sync with master simply check out the file [`hello-world.cc`](https://chromium.googlesource.com/v8/v8/+/master/samples/hello-world.cc).
\ No newline at end of file