{"id":19741653,"url":"https://github.com/hellomouse/notes2html","last_synced_at":"2026-05-15T19:31:44.868Z","repository":{"id":92393562,"uuid":"162052926","full_name":"hellomouse/Notes2HTML","owner":"hellomouse","description":"A quick \"compiler\" to convert notes to HTML code","archived":false,"fork":false,"pushed_at":"2018-12-24T00:41:21.000Z","size":100,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-28T07:00:39.349Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hellomouse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-17T00:11:22.000Z","updated_at":"2018-12-27T06:12:50.000Z","dependencies_parsed_at":"2023-05-17T03:00:13.284Z","dependency_job_id":null,"html_url":"https://github.com/hellomouse/Notes2HTML","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hellomouse/Notes2HTML","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellomouse%2FNotes2HTML","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellomouse%2FNotes2HTML/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellomouse%2FNotes2HTML/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellomouse%2FNotes2HTML/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hellomouse","download_url":"https://codeload.github.com/hellomouse/Notes2HTML/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellomouse%2FNotes2HTML/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33076161,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T01:27:24.478Z","updated_at":"2026-05-15T19:31:44.852Z","avatar_url":"https://github.com/hellomouse.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Notes2HTML\nBy Bowserinator, inspired by BWBellairs\n\nA compiler to compile markdown files (With a bit of additional custom syntax) into a website. You can sort all your notes into different categories and subcategories, and the website will automatically generate the structure for you.\n\n## Getting Started\n```\ngit clone https://github.com/hellomouse/Notes2HTML\ncd Notes2HTML\nnpm install\n```\n\nIn addition, you'll also need Python 3    _(To run the command `python -m http.server PORT`)_ if you want the localhost server to work.\n\nCreate a new folder somewhere and work on your notes (See wiki for file structure and how to format), and when you're done run the following command:\n\n```\nnode index.js -i [Path to your notes folder] -o [Path to output folder]\n```\nThe output folder will be created if it doesn't exist, and you can use relative paths. This output folder will be the root directory of your website. For more on customizing the output, see the wiki. By default, only `.note` and `.md` files are\nconverted to HTML.\n\n**WARNING:** Everything in the output directory will be DELETED when the program is run. Make sure you typed your path correctly!!\n\nHere are the follow flags you can use for the program\n```\nNotes2HTML\n  Generates notes from markdown files, and compiles into a website.\n\nOptions\n  -i, --input directory    Path to the input (md notes) folder\n  -o, --output directory   Path to the output folder. If it doesn't exist it will be created.\n  -p, --port port          (Default: 8080) Port to run the python server on (localhost)\n  -r, --rename             (Default: true) Automatically rename duplicate file paths\n  -s, --noserver           (Default: false) Don't run the python server when compiling\n  -h, --help               List all commands.\n```\n\n\n\n## Additional web config\nIn `src/config.js` you can find more options to configure:\n```\ndefinitionColor: '#d9e6fc'   Color for a definition block\nfactColor: '#fff7e0'         Color for a fact block\ncssPath: '/css'              Folder for css (Modify the /web folder if changed)\njsPath: '/js'                Folder for js (Modify the /web folder if changed)\nfooterText: 'Your footnote text goes here'\nsubjectColors: {\n    bio: 'green',\n    biology: 'green',\n    physics: '#4c90ff',\n    chemistry: '#ffc04c',\n    math: '#b198b7',\n    algebra: '#ff7e4c',\n    precalc: '#ff4c75',\n    geometry: '#c6bda9',\n    calc: '#d4d9db',\n    calculus: '#d4d9db'\n}\nfileExt: ['note', 'md']     File extensions to \"convert\", all others copied\n```\n\nTo modify any CSS or JS in the code, see the `/web` folder. See the wiki for more ways to customize your output.\n\n## Built With\n\n* [KaTeX](https://katex.org/docs/api.html) - LaTeX rendering\n* [MathJax](https://www.mathjax.org/) - ASCII math rendering\n* [markdown-it](https://www.npmjs.com/package/markdown-it) - Markdown rendering\n* [TinyColor](https://github.com/bgrins/TinyColor) - Color API\n\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhellomouse%2Fnotes2html","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhellomouse%2Fnotes2html","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhellomouse%2Fnotes2html/lists"}