├── .bowerrc ├── .gitignore ├── .vscode └── launch.json ├── INSTALL.md ├── LICENSE ├── README.md ├── TODO.md ├── ace-markdown.patch ├── bower.json ├── dtsm.json ├── editorjs ├── .eslintrc ├── api.js ├── convert.go ├── editor.js ├── emojiautocomplete.js ├── emojicompleter.js ├── jsconfig.json ├── lib │ ├── README.md │ └── typemath.js ├── matheditor.js ├── package.json ├── preview.js ├── tableformatter.js └── worker.js ├── gitplugin ├── git.go ├── logger.go ├── main.go └── service.go ├── gulpfile.coffee ├── package.json ├── public ├── about-ace.md ├── about-bootstrap.md ├── about-convert.md ├── about-xyjax.md ├── css │ ├── bootstrap.min.css │ ├── editor.css │ ├── formula.css │ ├── markdown.css │ ├── page.css │ ├── preview.css │ ├── print.css │ └── search.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── ico │ ├── favicon.png │ └── favicon.svg └── js │ ├── ace │ ├── ace.js │ ├── ext-language_tools.js │ ├── ext-searchbox.js │ ├── mode-markdown.js │ ├── theme-chrome.js │ └── theme-monokai.js │ ├── bootstrap.min.js │ ├── convert.min.js │ ├── page.js │ └── xypic.js ├── sample ├── .syaronote.yaml ├── Sample Page.md ├── _.md ├── _New.md ├── _Sidebar.md ├── editor.png ├── printing.png ├── syaro.png ├── table.gif └── ごちうさ │ ├── _.md │ └── 桐間紗路.md ├── syaro ├── api.go ├── controller_search.go ├── debug.go ├── git.go ├── gitservice │ ├── README.md │ ├── git.pb.go │ └── git.proto ├── index.go ├── index_ja.go ├── logger.go ├── main.go ├── markdown │ └── markdown.go ├── server.go ├── setting.go ├── util.go ├── view.go ├── watcher.go ├── wikiaction.go ├── wikifile.go ├── wikilink.go └── wikipage.go └── template ├── 404.html ├── 500.html ├── 501.html ├── css.html ├── editor-modals.html ├── editor-topbar.html ├── editor.html ├── error-navbar.html ├── js.html ├── meta.html ├── page-filelist.html ├── page-modals.html ├── page-navbar.html ├── page.html ├── search.html └── searchbox.html /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | bower_components 3 | node_modules 4 | typings 5 | debug 6 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/TODO.md -------------------------------------------------------------------------------- /ace-markdown.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/ace-markdown.patch -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/bower.json -------------------------------------------------------------------------------- /dtsm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/dtsm.json -------------------------------------------------------------------------------- /editorjs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/.eslintrc -------------------------------------------------------------------------------- /editorjs/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/api.js -------------------------------------------------------------------------------- /editorjs/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/convert.go -------------------------------------------------------------------------------- /editorjs/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/editor.js -------------------------------------------------------------------------------- /editorjs/emojiautocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/emojiautocomplete.js -------------------------------------------------------------------------------- /editorjs/emojicompleter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/emojicompleter.js -------------------------------------------------------------------------------- /editorjs/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/jsconfig.json -------------------------------------------------------------------------------- /editorjs/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/lib/README.md -------------------------------------------------------------------------------- /editorjs/lib/typemath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/lib/typemath.js -------------------------------------------------------------------------------- /editorjs/matheditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/matheditor.js -------------------------------------------------------------------------------- /editorjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/package.json -------------------------------------------------------------------------------- /editorjs/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/preview.js -------------------------------------------------------------------------------- /editorjs/tableformatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/tableformatter.js -------------------------------------------------------------------------------- /editorjs/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/editorjs/worker.js -------------------------------------------------------------------------------- /gitplugin/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/gitplugin/git.go -------------------------------------------------------------------------------- /gitplugin/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/gitplugin/logger.go -------------------------------------------------------------------------------- /gitplugin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/gitplugin/main.go -------------------------------------------------------------------------------- /gitplugin/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/gitplugin/service.go -------------------------------------------------------------------------------- /gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/gulpfile.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/package.json -------------------------------------------------------------------------------- /public/about-ace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/about-ace.md -------------------------------------------------------------------------------- /public/about-bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/about-bootstrap.md -------------------------------------------------------------------------------- /public/about-convert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/about-convert.md -------------------------------------------------------------------------------- /public/about-xyjax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/about-xyjax.md -------------------------------------------------------------------------------- /public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/css/editor.css -------------------------------------------------------------------------------- /public/css/formula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/css/formula.css -------------------------------------------------------------------------------- /public/css/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/css/markdown.css -------------------------------------------------------------------------------- /public/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/css/page.css -------------------------------------------------------------------------------- /public/css/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/css/preview.css -------------------------------------------------------------------------------- /public/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/css/print.css -------------------------------------------------------------------------------- /public/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/css/search.css -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/ico/favicon.png -------------------------------------------------------------------------------- /public/ico/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/ico/favicon.svg -------------------------------------------------------------------------------- /public/js/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/ace/ace.js -------------------------------------------------------------------------------- /public/js/ace/ext-language_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/ace/ext-language_tools.js -------------------------------------------------------------------------------- /public/js/ace/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/ace/ext-searchbox.js -------------------------------------------------------------------------------- /public/js/ace/mode-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/ace/mode-markdown.js -------------------------------------------------------------------------------- /public/js/ace/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/ace/theme-chrome.js -------------------------------------------------------------------------------- /public/js/ace/theme-monokai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/ace/theme-monokai.js -------------------------------------------------------------------------------- /public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/js/convert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/convert.min.js -------------------------------------------------------------------------------- /public/js/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/page.js -------------------------------------------------------------------------------- /public/js/xypic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/public/js/xypic.js -------------------------------------------------------------------------------- /sample/.syaronote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/.syaronote.yaml -------------------------------------------------------------------------------- /sample/Sample Page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/Sample Page.md -------------------------------------------------------------------------------- /sample/_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/_.md -------------------------------------------------------------------------------- /sample/_New.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/_New.md -------------------------------------------------------------------------------- /sample/_Sidebar.md: -------------------------------------------------------------------------------- 1 | :house: [Home](/) 2 | :page_with_curl: [[Sample Page]] 3 | -------------------------------------------------------------------------------- /sample/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/editor.png -------------------------------------------------------------------------------- /sample/printing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/printing.png -------------------------------------------------------------------------------- /sample/syaro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/syaro.png -------------------------------------------------------------------------------- /sample/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/table.gif -------------------------------------------------------------------------------- /sample/ごちうさ/_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/ごちうさ/_.md -------------------------------------------------------------------------------- /sample/ごちうさ/桐間紗路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/sample/ごちうさ/桐間紗路.md -------------------------------------------------------------------------------- /syaro/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/api.go -------------------------------------------------------------------------------- /syaro/controller_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/controller_search.go -------------------------------------------------------------------------------- /syaro/debug.go: -------------------------------------------------------------------------------- 1 | // +build debug 2 | 3 | package main 4 | 5 | import ( 6 | _ "net/http/pprof" 7 | ) 8 | -------------------------------------------------------------------------------- /syaro/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/git.go -------------------------------------------------------------------------------- /syaro/gitservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/gitservice/README.md -------------------------------------------------------------------------------- /syaro/gitservice/git.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/gitservice/git.pb.go -------------------------------------------------------------------------------- /syaro/gitservice/git.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/gitservice/git.proto -------------------------------------------------------------------------------- /syaro/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/index.go -------------------------------------------------------------------------------- /syaro/index_ja.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/index_ja.go -------------------------------------------------------------------------------- /syaro/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/logger.go -------------------------------------------------------------------------------- /syaro/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/main.go -------------------------------------------------------------------------------- /syaro/markdown/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/markdown/markdown.go -------------------------------------------------------------------------------- /syaro/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/server.go -------------------------------------------------------------------------------- /syaro/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/setting.go -------------------------------------------------------------------------------- /syaro/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/util.go -------------------------------------------------------------------------------- /syaro/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/view.go -------------------------------------------------------------------------------- /syaro/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/watcher.go -------------------------------------------------------------------------------- /syaro/wikiaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/wikiaction.go -------------------------------------------------------------------------------- /syaro/wikifile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/wikifile.go -------------------------------------------------------------------------------- /syaro/wikilink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/wikilink.go -------------------------------------------------------------------------------- /syaro/wikipage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/syaro/wikipage.go -------------------------------------------------------------------------------- /template/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/404.html -------------------------------------------------------------------------------- /template/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/500.html -------------------------------------------------------------------------------- /template/501.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/501.html -------------------------------------------------------------------------------- /template/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/css.html -------------------------------------------------------------------------------- /template/editor-modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/editor-modals.html -------------------------------------------------------------------------------- /template/editor-topbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/editor-topbar.html -------------------------------------------------------------------------------- /template/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/editor.html -------------------------------------------------------------------------------- /template/error-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/error-navbar.html -------------------------------------------------------------------------------- /template/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/js.html -------------------------------------------------------------------------------- /template/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/meta.html -------------------------------------------------------------------------------- /template/page-filelist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/page-filelist.html -------------------------------------------------------------------------------- /template/page-modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/page-modals.html -------------------------------------------------------------------------------- /template/page-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/page-navbar.html -------------------------------------------------------------------------------- /template/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/page.html -------------------------------------------------------------------------------- /template/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/search.html -------------------------------------------------------------------------------- /template/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUCC/SyaroNote/HEAD/template/searchbox.html --------------------------------------------------------------------------------