Boot command section was NOT working

If copy and pasted, the boot command section was NOT working due to < and > being translated to HTML code equivalents. Removed javascript tagging on the code block to see if this fixes the resulting display in a browser.
This commit is contained in:
dragon788 2015-01-30 10:51:20 -06:00
parent e3c2f01cb8
commit 800dbeedac
1 changed files with 3 additions and 3 deletions

View File

@ -283,9 +283,9 @@ The available variables are:
Example boot command. This is actually a working boot command used to start
an Ubuntu 12.04 installer:
```javascript
```
[
"&lt;esc&gt;&lt;esc&gt;&lt;enter&gt;&lt;wait&gt;",
"<esc><esc><enter><wait>",
"/install/vmlinuz noapic ",
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
@ -293,7 +293,7 @@ an Ubuntu 12.04 installer:
"fb=false debconf/frontend=noninteractive ",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
"initrd=/install/initrd.gz -- &lt;enter&gt;"
"initrd=/install/initrd.gz -- <enter>"
]
```