# HTML stuff
## DOM manipulation
// create new element
document.createElement('button')
// append child
element1.appendChild(element2)
## Elements
### Button
By default, a button has type `reset` or `submit`, both of which reload the
page. To avoid reloading:
### Checkbox
To check by default:
## CLI parsing with `pup`
`pup` is a little command line parser, inspired by `jq`.
pup --file ' [display function]'
By default pretty prints the full selected HTML elements. Setting display
function to `text{}` prints out just the inner text.