fixing strict mode (#359)
* actually check for error * use full url, move back to sidebar
This commit is contained in:
parent
fc74163bb7
commit
6e72ca6b6b
2
Home.md
2
Home.md
|
@ -70,5 +70,3 @@ So you are thinking of doing an engine control project. You have stopped by the
|
|||
### [![Miata rusEFI Racecar!](https://user-images.githubusercontent.com/5051341/80621997-bf7bf000-8a0d-11ea-998e-48fc3accba59.png)](https://www.youtube.com/embed/3xz66oR95F8?start=8 "Miata rusEFI Racecar!")
|
||||
|
||||
### [![BMW V12 with dual ETB!](https://user-images.githubusercontent.com/5051341/80622501-809a6a00-8a0e-11ea-8efc-b575def1d132.png)](https://www.youtube.com/embed/TGf8IMwRuIY "BMW V12 with dual ETB!")
|
||||
|
||||
[Sitemap](sitemap.xml)
|
||||
|
|
|
@ -4,5 +4,8 @@ cd mkdocs
|
|||
ln -s .. docs
|
||||
cp style.css ..
|
||||
mkdocs build --strict
|
||||
if [ $? -ne 0 ]; then
|
||||
exit 1
|
||||
fi
|
||||
cd ..
|
||||
rm style.css
|
||||
|
|
|
@ -88,3 +88,4 @@ nav:
|
|||
- 'Misc':
|
||||
- 'How to convert from carburetor to EFI': how-to-convert-from-carburetor-to-EFI.md
|
||||
- 'Do I need a wideband oxygen sensor?': do-i-need-wideband-oxygen-sensor.md
|
||||
- 'Sitemap': "https://wiki.rusefi.com/sitemap.xml"
|
||||
|
|
Loading…
Reference in New Issue