├── .gitignore ├── LICENSE ├── README.md ├── markdowneditor ├── markdowneditor.pro ├── markdowneditor.rc ├── qmls │ ├── base.qrc │ ├── custom │ │ ├── FileTree │ │ │ ├── FileTreeRightMenu.qml │ │ │ ├── FileTreeViewStyle.qml │ │ │ └── SubTree.qml │ │ ├── MarkdownEditor.qml │ │ ├── MarkdownViewer.qml │ │ ├── SettingsItem.qml │ │ ├── items │ │ │ └── ImageButton.qml │ │ ├── navigationbar │ │ │ ├── TitleNavigationBar.qml │ │ │ └── TitleNavigationItem.qml │ │ └── partition │ │ │ ├── DragLine.qml │ │ │ └── Triangle.qml │ └── main.qml ├── resources │ ├── 3rdparty │ │ ├── markdown.css │ │ ├── markdown.css.save │ │ ├── marked.min.js │ │ └── simple-markdown.css │ ├── default.md │ ├── images.qrc │ ├── images │ │ ├── 32x32 │ │ │ ├── markdown-editor-logo.ico │ │ │ └── markdown-editor-logo.png │ │ └── svg │ │ │ ├── add.svg │ │ │ ├── delete.svg │ │ │ ├── dir.svg │ │ │ ├── dir_open.svg │ │ │ ├── doc.svg │ │ │ ├── doc_null.svg │ │ │ ├── file-markdown.svg │ │ │ ├── max.svg │ │ │ ├── min.svg │ │ │ ├── point.svg │ │ │ ├── sets │ │ │ ├── edit.svg │ │ │ ├── edit_view.svg │ │ │ ├── file_list.svg │ │ │ ├── look.svg │ │ │ ├── set_hollow.svg │ │ │ └── set_solid.svg │ │ │ ├── triangle_down.svg │ │ │ └── triangle_right.svg │ ├── index.html │ ├── markdown-it │ │ ├── markdown-it-footnote.js │ │ ├── markdown-it-math.js │ │ ├── markdown-it.js │ │ └── mathjax.css │ ├── markdowneditor.qrc │ └── qwebchannel.js └── src │ ├── document.cpp │ ├── document.h │ ├── dragarea.cpp │ ├── dragarea.h │ ├── filemodel.cpp │ ├── filemodel.h │ ├── main.cpp │ ├── utils.cpp │ └── utils.h └── screenShot └── home.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.pro.user* 2 | */output 3 | build-markdowneditor-* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/README.md -------------------------------------------------------------------------------- /markdowneditor/markdowneditor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/markdowneditor.pro -------------------------------------------------------------------------------- /markdowneditor/markdowneditor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/markdowneditor.rc -------------------------------------------------------------------------------- /markdowneditor/qmls/base.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/base.qrc -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/FileTree/FileTreeRightMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/FileTree/FileTreeRightMenu.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/FileTree/FileTreeViewStyle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/FileTree/FileTreeViewStyle.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/FileTree/SubTree.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/FileTree/SubTree.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/MarkdownEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/MarkdownEditor.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/MarkdownViewer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/MarkdownViewer.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/SettingsItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/SettingsItem.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/items/ImageButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/items/ImageButton.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/navigationbar/TitleNavigationBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/navigationbar/TitleNavigationBar.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/navigationbar/TitleNavigationItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/navigationbar/TitleNavigationItem.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/partition/DragLine.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/partition/DragLine.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/custom/partition/Triangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/custom/partition/Triangle.qml -------------------------------------------------------------------------------- /markdowneditor/qmls/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/qmls/main.qml -------------------------------------------------------------------------------- /markdowneditor/resources/3rdparty/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/3rdparty/markdown.css -------------------------------------------------------------------------------- /markdowneditor/resources/3rdparty/markdown.css.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/3rdparty/markdown.css.save -------------------------------------------------------------------------------- /markdowneditor/resources/3rdparty/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/3rdparty/marked.min.js -------------------------------------------------------------------------------- /markdowneditor/resources/3rdparty/simple-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/3rdparty/simple-markdown.css -------------------------------------------------------------------------------- /markdowneditor/resources/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/default.md -------------------------------------------------------------------------------- /markdowneditor/resources/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images.qrc -------------------------------------------------------------------------------- /markdowneditor/resources/images/32x32/markdown-editor-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/32x32/markdown-editor-logo.ico -------------------------------------------------------------------------------- /markdowneditor/resources/images/32x32/markdown-editor-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/32x32/markdown-editor-logo.png -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/add.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/delete.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/dir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/dir.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/dir_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/dir_open.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/doc.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/doc_null.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/doc_null.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/file-markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/file-markdown.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/max.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/min.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/point.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/sets/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/sets/edit.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/sets/edit_view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/sets/edit_view.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/sets/file_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/sets/file_list.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/sets/look.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/sets/look.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/sets/set_hollow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/sets/set_hollow.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/sets/set_solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/sets/set_solid.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/triangle_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/triangle_down.svg -------------------------------------------------------------------------------- /markdowneditor/resources/images/svg/triangle_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/images/svg/triangle_right.svg -------------------------------------------------------------------------------- /markdowneditor/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/index.html -------------------------------------------------------------------------------- /markdowneditor/resources/markdown-it/markdown-it-footnote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/markdown-it/markdown-it-footnote.js -------------------------------------------------------------------------------- /markdowneditor/resources/markdown-it/markdown-it-math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/markdown-it/markdown-it-math.js -------------------------------------------------------------------------------- /markdowneditor/resources/markdown-it/markdown-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/markdown-it/markdown-it.js -------------------------------------------------------------------------------- /markdowneditor/resources/markdown-it/mathjax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/markdown-it/mathjax.css -------------------------------------------------------------------------------- /markdowneditor/resources/markdowneditor.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/markdowneditor.qrc -------------------------------------------------------------------------------- /markdowneditor/resources/qwebchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/resources/qwebchannel.js -------------------------------------------------------------------------------- /markdowneditor/src/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/src/document.cpp -------------------------------------------------------------------------------- /markdowneditor/src/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/src/document.h -------------------------------------------------------------------------------- /markdowneditor/src/dragarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/src/dragarea.cpp -------------------------------------------------------------------------------- /markdowneditor/src/dragarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/src/dragarea.h -------------------------------------------------------------------------------- /markdowneditor/src/filemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/src/filemodel.cpp -------------------------------------------------------------------------------- /markdowneditor/src/filemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/src/filemodel.h -------------------------------------------------------------------------------- /markdowneditor/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/src/main.cpp -------------------------------------------------------------------------------- /markdowneditor/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/src/utils.cpp -------------------------------------------------------------------------------- /markdowneditor/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/markdowneditor/src/utils.h -------------------------------------------------------------------------------- /screenShot/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyCxl/markdown-editor/HEAD/screenShot/home.png --------------------------------------------------------------------------------