Correct the formatting of the network commands document

The ipmitool commands are placed in the code block.

Change-Id: I787dff9d6acd77ceaa1c6251b4287c2367212cad
Signed-off-by: Tom Joseph <tomjoseph@in.ibm.com>
diff --git a/docs/ipmitool-commands-cheatsheet.md b/docs/ipmitool-commands-cheatsheet.md
index bb72083..050b927 100644
--- a/docs/ipmitool-commands-cheatsheet.md
+++ b/docs/ipmitool-commands-cheatsheet.md
@@ -10,27 +10,27 @@
 
 ### Set the interface mode
 
-ipmitool lan set <channel> ipsrc static
+```ipmitool lan set <channel> ipsrc static```
 
 ### Set the IP Address
 
-ipmitool lan set <channel> ipaddr <ip>
+```ipmitool lan set <channel> ipaddr <x.x.x.x>```
 
 ### Set the network mask
 
-ipmitool lan set <channel> netmask <mask>
+```ipmitool lan set <channel> netmask <x.x.x.x>```
 
 ### Set the default gateway
 
-ipmitool lan set <channel> defgw ipaddr <ip>
+```ipmitool lan set <channel> defgw ipaddr <x.x.x.x>```
 
 ### Set the VLAN
 
-ipmitool lan set <channel> vlan id <id>
+```ipmitool lan set <channel> vlan id <id>```
 
 ### Delete the VLAN
 
-ipmitool lan set <channel> vlan id off
+```ipmitool lan set <channel> vlan id off```
 
 NOTE: The user can group multiple set operations since the IPMI daemon
 waits for 10 seconds after each set operation before applying the configuration.