Here's a fix for the style thing.
First you need to get the stylesheet. Do that by opening the wiki online, opening your browser devtools (Ctrl+Shift+i on firefox), going to style editor(or smth like that), choosing load.php from the left menu and saving it as style.css in the docs/wiki/ folder.
For this next step you'll need cygwin (for sed and bash) if you are on windows. You need to open a bash console(cygwin for windows) and cd to the docs/wiki/ folder. Then you need to run this for loop:
Code: Select all
for file in *.html; do
sed -i 's/<link rel="stylesheet" href="" \/>/<link rel="stylesheet" href="style.css" \/>/g' $file
done
or
Code: Select all
for f in *.html; do sed -i 's/<link rel="stylesheet" href="" \/>/<link rel="stylesheet" href="style.css" \/>/g' $f; done
This will take a few minutes, since the wiki contains some games and translations besides the love documentation. It has to change ~7100 files.
After that, when you open index.html (or any other file) you should see it with the style.
Hopefully this helped