├── .compilerc ├── .editorconfig ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .jshintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Info.plist ├── LICENSE ├── README.md ├── TODO.md ├── assets ├── app.icns ├── app.png ├── dmg-background.png ├── example.md ├── markdown-mark-icon-solid.icns ├── markdown-mark-icon.icns └── screenshot.png ├── child.plist ├── docs ├── _config.yml ├── index.md ├── markdown.png └── mermaid.png ├── entitlements.plist ├── loginhelper.plist ├── mdpappstoreprofile.provisionprofile ├── package.json ├── parent.plist ├── src ├── main.js ├── menu.js └── renderer │ ├── index.html │ ├── script.js │ └── style.css └── themes ├── clearness-dark.css ├── clearness.css ├── github.css ├── github2.css ├── solarized-dark.css └── solarized-light.css /.compilerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/.compilerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | presentation.md 4 | github-token 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/TODO.md -------------------------------------------------------------------------------- /assets/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/assets/app.icns -------------------------------------------------------------------------------- /assets/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/assets/app.png -------------------------------------------------------------------------------- /assets/dmg-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/assets/dmg-background.png -------------------------------------------------------------------------------- /assets/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/assets/example.md -------------------------------------------------------------------------------- /assets/markdown-mark-icon-solid.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/assets/markdown-mark-icon-solid.icns -------------------------------------------------------------------------------- /assets/markdown-mark-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/assets/markdown-mark-icon.icns -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /child.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/child.plist -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/docs/markdown.png -------------------------------------------------------------------------------- /docs/mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/docs/mermaid.png -------------------------------------------------------------------------------- /entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/entitlements.plist -------------------------------------------------------------------------------- /loginhelper.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/loginhelper.plist -------------------------------------------------------------------------------- /mdpappstoreprofile.provisionprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/mdpappstoreprofile.provisionprofile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/package.json -------------------------------------------------------------------------------- /parent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/parent.plist -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/src/main.js -------------------------------------------------------------------------------- /src/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/src/menu.js -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/src/renderer/script.js -------------------------------------------------------------------------------- /src/renderer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/src/renderer/style.css -------------------------------------------------------------------------------- /themes/clearness-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/themes/clearness-dark.css -------------------------------------------------------------------------------- /themes/clearness.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/themes/clearness.css -------------------------------------------------------------------------------- /themes/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/themes/github.css -------------------------------------------------------------------------------- /themes/github2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/themes/github2.css -------------------------------------------------------------------------------- /themes/solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/themes/solarized-dark.css -------------------------------------------------------------------------------- /themes/solarized-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericlink/mdp/HEAD/themes/solarized-light.css --------------------------------------------------------------------------------