Test cmd markdown
diff --git a/README.md b/README.md
index 4f8ce63..537cab1 100644
--- a/README.md
+++ b/README.md
@@ -44,20 +44,20 @@
 
 First generate the Visual Studio 2017 project/solution files:
 
-```bash
-mkdir -p build
+```cmd
+mkdir build
 cd build
 cmake -G "Visual Studio 15" ..
 ```
 The default default will build for x86. For 64-bit run:
 
-```bash
+```cmd
 cmake -G "Visual Studio 15 Win64" ..
 ```
 
 To compile the Windows solution from the command-line:
 
-```bash
+```cmd
 devenv /build Debug leveldb.sln
 ```