├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── package.json ├── public └── thumbnail.png └── src ├── index.pug ├── meta_social.pug ├── scripts ├── FauxCode.js ├── gist-syntax-bindings.json ├── gists.json ├── github-syntax-dark.json ├── github-syntax-light.json └── main.js ├── styles ├── form.sass ├── header.sass ├── main.sass └── variables.sass └── svgs └── symbols.svg /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .cache/ 3 | dist/ 4 | .DS_Store -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/package.json -------------------------------------------------------------------------------- /public/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/public/thumbnail.png -------------------------------------------------------------------------------- /src/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/index.pug -------------------------------------------------------------------------------- /src/meta_social.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/meta_social.pug -------------------------------------------------------------------------------- /src/scripts/FauxCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/scripts/FauxCode.js -------------------------------------------------------------------------------- /src/scripts/gist-syntax-bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/scripts/gist-syntax-bindings.json -------------------------------------------------------------------------------- /src/scripts/gists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/scripts/gists.json -------------------------------------------------------------------------------- /src/scripts/github-syntax-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/scripts/github-syntax-dark.json -------------------------------------------------------------------------------- /src/scripts/github-syntax-light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/scripts/github-syntax-light.json -------------------------------------------------------------------------------- /src/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/scripts/main.js -------------------------------------------------------------------------------- /src/styles/form.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/styles/form.sass -------------------------------------------------------------------------------- /src/styles/header.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/styles/header.sass -------------------------------------------------------------------------------- /src/styles/main.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/styles/main.sass -------------------------------------------------------------------------------- /src/styles/variables.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/styles/variables.sass -------------------------------------------------------------------------------- /src/svgs/symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knutsynstad/faux-code-generator/HEAD/src/svgs/symbols.svg --------------------------------------------------------------------------------