⚙️ bliu.tech
A repository containing code for Benson Liu's personal website.
Access the website at https://bliu.tech !
For local development with HTML & CSS, it is recommended to install serve as a useful tool.
git clone https://github.com/bliutech/bliu.tech.git
cd bliu.tech/
npx serveFor linting, it is recommended to install prettier as a useful tool.
npx prettier --write *.html *.css *.jsDefault prettier has some formatting decision with regards to void HTML elements that are not desired.
To fix this, we use prettier-plugin-void-html to enforce the desired formatting.
For accessibility checks, it is recommended to install pa11y as a useful tool.
for file in *.html; do if ! pa11y --reporter cli $file; then echo "$file : FAILED"; break; fi; done