├── LICENSE ├── README.md ├── javascript ├── .gitignore ├── package.json ├── template.js └── yarn.lock ├── template.go ├── template.lua ├── template.php ├── template.py ├── template.rb └── template.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/README.md -------------------------------------------------------------------------------- /javascript/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/javascript/package.json -------------------------------------------------------------------------------- /javascript/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/javascript/template.js -------------------------------------------------------------------------------- /javascript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/javascript/yarn.lock -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/template.go -------------------------------------------------------------------------------- /template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/template.lua -------------------------------------------------------------------------------- /template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/template.php -------------------------------------------------------------------------------- /template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/template.py -------------------------------------------------------------------------------- /template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/template.rb -------------------------------------------------------------------------------- /template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdave16/executable_documentation/HEAD/template.sh --------------------------------------------------------------------------------