Online documentation for TempleOS
Go to file
Reimar 41e4bd55c9
Fix file index style and remove unnecessary files
2024-03-24 22:40:03 +01:00
public Fix file index style and remove unnecessary files 2024-03-24 22:40:03 +01:00
Copy.HC Use HTML for Holyc files as well 2024-03-24 22:24:44 +01:00
README.md Add README 2024-03-24 10:46:31 +01:00
file_index.xslt Fix file index style and remove unnecessary files 2024-03-24 22:40:03 +01:00

README.md

TempleOS documentation

Hosts the source code and documentation files (converted to HTML) of TempleOS

Currently hosted on https://templeos.info

The Copy.HC script will automatically convert and copy the source files into /Home/Src

The website requires the following nginx configuration:

location /Wb/ {
	autoindex on;
	autoindex_format xml;

	xslt_stylesheet /path/to/file_index.xslt;

	try_files $uri $uri/ =404;
}