From f3373d08c74e36b2161e1f4e4eef6aa7197352e0 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Fri, 7 Nov 2025 04:44:30 +0530 Subject: docs: Add HTML documentation generator and improve documentation structure - Add html_docs/ directory with Python-based documentation generator - Include custom CSS styling for modern, clean documentation layout - Update README.md with improved formatting and documentation links - Enhance markdown documentation across all docs/ files: - Improve API documentation with better code examples - Refactor DOCUMENTATION_INDEX.md for clearer navigation - Update EMBEDDING.md, CUSTOMIZATION.md, and other guides - Standardize formatting and improve readability throughout - Fix inconsistent line endings and formatting issues The HTML documentation generator creates a styled, browsable version of the project documentation for easier reading and navigation. --- html_docs/index.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 html_docs/index.html (limited to 'html_docs/index.html') diff --git a/html_docs/index.html b/html_docs/index.html new file mode 100644 index 0000000..ef7e6e1 --- /dev/null +++ b/html_docs/index.html @@ -0,0 +1,15 @@ +ReiLua + +

ReiLua Enhanced

Lua binding for Raylib.

Documentation

Quick Start

Create main.lua:

function RL.init()
+  RL.SetWindowTitle("Hello")
+end
+
+function RL.update(dt)
+end
+
+function RL.draw()
+  RL.ClearBackground(RL.RAYWHITE)
+  RL.DrawText("Hello!",190,200,20,RL.BLACK)
+end

Run: ReiLua.exe

\ No newline at end of file -- cgit v1.2.3