├── .gitignore ├── .node-version ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── demo.gif ├── title.png └── ui.png ├── bin └── markn ├── circle.yml ├── example ├── emoji-activity.md ├── emoji-celebration.md ├── emoji-flags.md ├── emoji-food-and-drink.md ├── emoji-nature.md ├── emoji-objects-and-symbols.md ├── emoji-people.md ├── emoji-travel-and-places.md ├── highlight.md ├── huge.js ├── huge.md └── index.md ├── gulpfile.babel.js ├── package.json └── src ├── common └── file.js ├── icon ├── icon.svg ├── markn.icns └── markn.ico ├── main ├── events.js ├── main.js ├── mediator.js ├── menu.js ├── storage.js ├── util.js └── window.js ├── renderer ├── actions │ ├── app.js │ ├── history.js │ ├── markdown.js │ ├── menu.js │ ├── scroll.js │ └── search.js ├── dispatcher.js ├── index.js ├── stores │ ├── file.js │ ├── history.js │ ├── scroll.js │ ├── search.js │ └── window.js └── views │ ├── body.js │ ├── head.js │ ├── markdown.js │ ├── nav.js │ ├── rail.js │ ├── root.js │ └── search.js └── static ├── emoji.styl ├── index.jade └── index.styl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | iojs-v2.3.1 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/assets/title.png -------------------------------------------------------------------------------- /assets/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/assets/ui.png -------------------------------------------------------------------------------- /bin/markn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/bin/markn -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/circle.yml -------------------------------------------------------------------------------- /example/emoji-activity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/emoji-activity.md -------------------------------------------------------------------------------- /example/emoji-celebration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/emoji-celebration.md -------------------------------------------------------------------------------- /example/emoji-flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/emoji-flags.md -------------------------------------------------------------------------------- /example/emoji-food-and-drink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/emoji-food-and-drink.md -------------------------------------------------------------------------------- /example/emoji-nature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/emoji-nature.md -------------------------------------------------------------------------------- /example/emoji-objects-and-symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/emoji-objects-and-symbols.md -------------------------------------------------------------------------------- /example/emoji-people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/emoji-people.md -------------------------------------------------------------------------------- /example/emoji-travel-and-places.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/emoji-travel-and-places.md -------------------------------------------------------------------------------- /example/highlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/highlight.md -------------------------------------------------------------------------------- /example/huge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/huge.js -------------------------------------------------------------------------------- /example/huge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/huge.md -------------------------------------------------------------------------------- /example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/example/index.md -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/package.json -------------------------------------------------------------------------------- /src/common/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/common/file.js -------------------------------------------------------------------------------- /src/icon/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/icon/icon.svg -------------------------------------------------------------------------------- /src/icon/markn.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/icon/markn.icns -------------------------------------------------------------------------------- /src/icon/markn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/icon/markn.ico -------------------------------------------------------------------------------- /src/main/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/main/events.js -------------------------------------------------------------------------------- /src/main/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/main/main.js -------------------------------------------------------------------------------- /src/main/mediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/main/mediator.js -------------------------------------------------------------------------------- /src/main/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/main/menu.js -------------------------------------------------------------------------------- /src/main/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/main/storage.js -------------------------------------------------------------------------------- /src/main/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/main/util.js -------------------------------------------------------------------------------- /src/main/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/main/window.js -------------------------------------------------------------------------------- /src/renderer/actions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/actions/app.js -------------------------------------------------------------------------------- /src/renderer/actions/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/actions/history.js -------------------------------------------------------------------------------- /src/renderer/actions/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/actions/markdown.js -------------------------------------------------------------------------------- /src/renderer/actions/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/actions/menu.js -------------------------------------------------------------------------------- /src/renderer/actions/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/actions/scroll.js -------------------------------------------------------------------------------- /src/renderer/actions/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/actions/search.js -------------------------------------------------------------------------------- /src/renderer/dispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/dispatcher.js -------------------------------------------------------------------------------- /src/renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/index.js -------------------------------------------------------------------------------- /src/renderer/stores/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/stores/file.js -------------------------------------------------------------------------------- /src/renderer/stores/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/stores/history.js -------------------------------------------------------------------------------- /src/renderer/stores/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/stores/scroll.js -------------------------------------------------------------------------------- /src/renderer/stores/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/stores/search.js -------------------------------------------------------------------------------- /src/renderer/stores/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/stores/window.js -------------------------------------------------------------------------------- /src/renderer/views/body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/views/body.js -------------------------------------------------------------------------------- /src/renderer/views/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/views/head.js -------------------------------------------------------------------------------- /src/renderer/views/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/views/markdown.js -------------------------------------------------------------------------------- /src/renderer/views/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/views/nav.js -------------------------------------------------------------------------------- /src/renderer/views/rail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/views/rail.js -------------------------------------------------------------------------------- /src/renderer/views/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/views/root.js -------------------------------------------------------------------------------- /src/renderer/views/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/renderer/views/search.js -------------------------------------------------------------------------------- /src/static/emoji.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/static/emoji.styl -------------------------------------------------------------------------------- /src/static/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/static/index.jade -------------------------------------------------------------------------------- /src/static/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minodisk/markn/HEAD/src/static/index.styl --------------------------------------------------------------------------------