html

A header only c++ library for creating, manipulating, and rendering html, css, and js.


html

/

install.sh

1 2 3 4 5 6 7
#!/usr/bin/env bash
set -e

printf "Installing\n"
sudo mkdir -vp /usr/local/include/ob
sudo cp -vr ./include/html.hh /usr/local/include/ob/
printf "Success\n"
Back to Top