The old documentation for XL Converter.
Important
This documentation has been deprecated and is no longer maintained. The new one is available here.
Features a search engine based on a local index.
Install nvm
Use latest NodeJS LTS
nvm install --ltsClone the repo.
git clone https://github.com/JacobDev1/xl-converter-docs.gitTip
If you need a specific version, use git checkout <version_tag>
Install packages and and run.
npm i
npm run devThe search index should be re-generated before deployment.
First, run the project.
npm i
npm run devOpen another terminal and install Python.
sudo apt install python3 python3-pip python3-venv firefoxCreate a venv.
make venv
source env/bin/activateFinally, generate the search index.
make indexmake testmake build
Create a file named .htaccess with the following inside.
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]
Then put it next to index.html.

