A static website for browsing markdown files containing LLM interview questions and answers, originally compiled by Hao Hoang.
- Place your numbered markdown files in the
content/
directory - Run the manifest generator to create the file list:
node generate-manifest.js
- Open
index.html
in your browser or serve it with a local server
For best results, serve the files with a local HTTP server:
# Python 3
python -m http.server 8000
# Node.js (if you have http-server installed)
npx http-server
# PHP
php -S localhost:8000
Then open http://localhost:8000 in your browser.
- Clean left-rail navigation
- Markdown rendering with syntax highlighting
- Responsive design
- Proper attribution to original content creator
- Auto-discovery of markdown files
- Original PDF Content: Hao Hoang
- Website Implementation: Scott Hanselman