├── .github └── FUNDING.yml ├── .gitignore ├── COPYRIGHT ├── Makefile ├── README.md ├── add-to-head.rkt ├── fear-of-macros.jpg ├── gh.css ├── index.rkt └── macro-stepper.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greghendershott/fear-of-macros/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | html/ 3 | fear-of-macros/ 4 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greghendershott/fear-of-macros/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greghendershott/fear-of-macros/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greghendershott/fear-of-macros/HEAD/README.md -------------------------------------------------------------------------------- /add-to-head.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greghendershott/fear-of-macros/HEAD/add-to-head.rkt -------------------------------------------------------------------------------- /fear-of-macros.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greghendershott/fear-of-macros/HEAD/fear-of-macros.jpg -------------------------------------------------------------------------------- /gh.css: -------------------------------------------------------------------------------- 1 | .strike { 2 | text-decoration: line-through; 3 | } 4 | -------------------------------------------------------------------------------- /index.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greghendershott/fear-of-macros/HEAD/index.rkt -------------------------------------------------------------------------------- /macro-stepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greghendershott/fear-of-macros/HEAD/macro-stepper.png --------------------------------------------------------------------------------