1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-20 06:33:24 +01:00

Fix code block detection.

This commit is contained in:
Markus Birth 2016-11-01 23:05:57 +01:00
parent 79f56c6479
commit fc37b8c294

View File

@ -186,9 +186,9 @@ Then proceed according to [this](http://www.syslinux.org/wiki/index.php?title=WD
* Find the `# findknoppix devices...` section and delete everything from the * Find the `# findknoppix devices...` section and delete everything from the
`findknoppix()` method and replace it by `return 0` `findknoppix()` method and replace it by `return 0`
Change Change
``` ```
# findknoppix devices... # findknoppix devices...
findknoppix(){ findknoppix(){
local dev local dev
@ -209,9 +209,9 @@ findknoppix(){
} }
``` ```
into into
``` ```
# findknoppix devices... # findknoppix devices...
findknoppix(){ findknoppix(){
return 0 return 0