├── .gitignore ├── README.md ├── controller.js ├── font.css ├── highlight ├── tomorrow-night-eighties.css └── tomorrow-night.css ├── index.html ├── main.js ├── marked.js ├── package.json ├── screenshot.png ├── style.css ├── syntax.js └── up /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | saved.md 3 | app.asar 4 | copy 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/README.md -------------------------------------------------------------------------------- /controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/controller.js -------------------------------------------------------------------------------- /font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/font.css -------------------------------------------------------------------------------- /highlight/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/highlight/tomorrow-night-eighties.css -------------------------------------------------------------------------------- /highlight/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/highlight/tomorrow-night.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/main.js -------------------------------------------------------------------------------- /marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/marked.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/screenshot.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/style.css -------------------------------------------------------------------------------- /syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huytd/markto/HEAD/syntax.js -------------------------------------------------------------------------------- /up: -------------------------------------------------------------------------------- 1 | electron . 2 | --------------------------------------------------------------------------------