Static website for the Wheelchair Bot project, built from markdown.
The website content is maintained in content.md as markdown. To edit the website:
- Edit
content.mdwith your changes - Run
npm run buildto regenerateindex.html - Commit both files
This site uses a markdown-to-HTML build system:
- content.md - The source content in markdown format
- template.html - The HTML template wrapper
- build.js - Node.js script to convert markdown to HTML
- styles.css - Responsive CSS styling
- index.html - Generated HTML file (do not edit directly)
# Install dependencies
npm install
# Build the site
npm run build
# Test locally
python3 -m http.server 8000
# Then visit http://localhost:8000The site is automatically deployed to GitHub Pages from the index.html file. After making changes:
- Edit
content.md - Run
npm run build - Commit and push both
content.mdand the generatedindex.html