├── .gitignore ├── README.md ├── demo.gif ├── index.html ├── package.json └── src ├── download-png.js ├── script.js └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | package-lock.json 3 | node_modules/ 4 | .cache/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # num2math 2 | Generate a complicated math expression that results in a number. If you wanna do this for some reason. 3 | 4 | Try it: https://enjeck.com/num2math/ 5 | 6 |  7 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjeck/num2math/216ac31b16cc2f97b79015b404a7ff6dc10b803e/demo.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 12 | 16 |63 | You appear to be on a device with a narrow screen width (i.e you are 64 | probably on a mobile device). Due to the nature of mathematics on this 65 | site, it best views in landscape mode. On narrow screens, some math 66 | expressions may run off the side of the screen (you should be able to 67 | scroll to see them) 68 |
69 |