gitextract_t164g6mh/ ├── .bowerrc ├── .codeclimate.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .jshintrc ├── .travis.yml ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── app/ │ ├── .htaccess │ ├── 404.html │ ├── config.xml │ ├── docs/ │ │ └── howto.md │ ├── dropbox.html │ ├── images/ │ │ ├── icon/ │ │ │ └── icon-512x512.icns │ │ └── laverna.icon.xcf │ ├── index.html │ ├── locales/ │ │ ├── ar/ │ │ │ └── translation.json │ │ ├── bs_ba/ │ │ │ └── translation.json │ │ ├── da/ │ │ │ └── translation.json │ │ ├── de/ │ │ │ └── translation.json │ │ ├── de_ch/ │ │ │ └── translation.json │ │ ├── el/ │ │ │ └── translation.json │ │ ├── en/ │ │ │ └── translation.json │ │ ├── eo/ │ │ │ └── translation.json │ │ ├── es/ │ │ │ └── translation.json │ │ ├── fr/ │ │ │ └── translation.json │ │ ├── gl/ │ │ │ └── translation.json │ │ ├── hi_in/ │ │ │ └── translation.json │ │ ├── it/ │ │ │ └── translation.json │ │ ├── ja/ │ │ │ └── translation.json │ │ ├── ko/ │ │ │ └── translation.json │ │ ├── locales.json │ │ ├── lt/ │ │ │ └── translation.json │ │ ├── lv/ │ │ │ └── translation.json │ │ ├── mr_in/ │ │ │ └── translation.json │ │ ├── nb/ │ │ │ └── translation.json │ │ ├── nl/ │ │ │ └── translation.json │ │ ├── nn/ │ │ │ └── translation.json │ │ ├── oc/ │ │ │ └── translation.json │ │ ├── pl/ │ │ │ └── translation.json │ │ ├── pt/ │ │ │ └── translation.json │ │ ├── pt_br/ │ │ │ └── translation.json │ │ ├── ru/ │ │ │ └── translation.json │ │ ├── se/ │ │ │ └── translation.json │ │ ├── sq/ │ │ │ └── translation.json │ │ ├── tr/ │ │ │ └── translation.json │ │ ├── zh_cn/ │ │ │ └── translation.json │ │ └── zh_tw/ │ │ └── translation.json │ ├── manifest.webapp │ ├── migrate.html │ ├── robots.txt │ ├── scripts/ │ │ ├── app.js │ │ ├── apps/ │ │ │ ├── confirm/ │ │ │ │ ├── appConfirm.js │ │ │ │ └── show/ │ │ │ │ ├── controller.js │ │ │ │ ├── template.html │ │ │ │ └── view.js │ │ │ ├── encryption/ │ │ │ │ ├── appEncrypt.js │ │ │ │ ├── auth/ │ │ │ │ │ ├── app.js │ │ │ │ │ ├── controller.js │ │ │ │ │ ├── errorConfirm.html │ │ │ │ │ ├── template.html │ │ │ │ │ └── view.js │ │ │ │ └── encrypt/ │ │ │ │ ├── app.js │ │ │ │ ├── backup.html │ │ │ │ ├── backupView.js │ │ │ │ ├── controller.js │ │ │ │ ├── template.html │ │ │ │ └── view.js │ │ │ ├── help/ │ │ │ │ ├── about/ │ │ │ │ │ ├── app.js │ │ │ │ │ ├── controller.js │ │ │ │ │ ├── template.html │ │ │ │ │ └── view.js │ │ │ │ ├── appHelp.js │ │ │ │ ├── firstStart/ │ │ │ │ │ ├── app.js │ │ │ │ │ ├── controller.js │ │ │ │ │ ├── template.html │ │ │ │ │ └── view.js │ │ │ │ └── show/ │ │ │ │ ├── app.js │ │ │ │ ├── controller.js │ │ │ │ ├── template.html │ │ │ │ └── view.js │ │ │ ├── navbar/ │ │ │ │ ├── appNavbar.js │ │ │ │ └── show/ │ │ │ │ ├── controller.js │ │ │ │ ├── template.html │ │ │ │ └── view.js │ │ │ ├── notebooks/ │ │ │ │ ├── appNotebooks.js │ │ │ │ ├── form/ │ │ │ │ │ ├── notebook/ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── controller.js │ │ │ │ │ │ ├── formView.js │ │ │ │ │ │ └── templates/ │ │ │ │ │ │ └── form.html │ │ │ │ │ └── tag/ │ │ │ │ │ ├── app.js │ │ │ │ │ ├── controller.js │ │ │ │ │ ├── formView.js │ │ │ │ │ └── templates/ │ │ │ │ │ └── form.html │ │ │ │ ├── list/ │ │ │ │ │ ├── app.js │ │ │ │ │ ├── behaviors/ │ │ │ │ │ │ ├── compositeBehavior.js │ │ │ │ │ │ └── itemBehavior.js │ │ │ │ │ ├── controller.js │ │ │ │ │ ├── templates/ │ │ │ │ │ │ ├── layout.html │ │ │ │ │ │ ├── notebooksItem.html │ │ │ │ │ │ ├── notebooksList.html │ │ │ │ │ │ ├── tagsItem.html │ │ │ │ │ │ └── tagsList.html │ │ │ │ │ └── views/ │ │ │ │ │ ├── layout.js │ │ │ │ │ ├── notebooksComposite.js │ │ │ │ │ ├── notebooksItem.js │ │ │ │ │ ├── tagsComposite.js │ │ │ │ │ └── tagsItem.js │ │ │ │ └── remove/ │ │ │ │ ├── controller.js │ │ │ │ └── notebooks.html │ │ │ ├── notes/ │ │ │ │ ├── appNote.js │ │ │ │ ├── form/ │ │ │ │ │ ├── app.js │ │ │ │ │ ├── behaviors/ │ │ │ │ │ │ ├── desktop.js │ │ │ │ │ │ └── mobile.js │ │ │ │ │ ├── controller.js │ │ │ │ │ ├── templates/ │ │ │ │ │ │ ├── form.html │ │ │ │ │ │ └── notebooks.html │ │ │ │ │ └── views/ │ │ │ │ │ ├── formView.js │ │ │ │ │ ├── notebook.js │ │ │ │ │ └── notebooks.js │ │ │ │ ├── list/ │ │ │ │ │ ├── controller.js │ │ │ │ │ ├── listApp.js │ │ │ │ │ ├── templates/ │ │ │ │ │ │ ├── sidebarList.html │ │ │ │ │ │ └── sidebarListItem.html │ │ │ │ │ └── views/ │ │ │ │ │ ├── noteSidebar.js │ │ │ │ │ └── noteSidebarItem.js │ │ │ │ ├── remove/ │ │ │ │ │ └── controller.js │ │ │ │ └── show/ │ │ │ │ ├── app.js │ │ │ │ ├── controller.js │ │ │ │ ├── noteView.js │ │ │ │ └── templates/ │ │ │ │ └── item.html │ │ │ └── settings/ │ │ │ ├── appSettings.js │ │ │ ├── controller.js │ │ │ ├── module/ │ │ │ │ ├── app.js │ │ │ │ └── controller.js │ │ │ ├── show/ │ │ │ │ ├── app.js │ │ │ │ ├── controller.js │ │ │ │ ├── formBehavior.js │ │ │ │ ├── module.js │ │ │ │ ├── templates/ │ │ │ │ │ ├── editor.html │ │ │ │ │ ├── encryption.html │ │ │ │ │ ├── general.html │ │ │ │ │ ├── importExport.html │ │ │ │ │ ├── keybindings.html │ │ │ │ │ ├── modules.html │ │ │ │ │ ├── profiles.html │ │ │ │ │ ├── showTemplate.html │ │ │ │ │ └── sync.html │ │ │ │ └── views/ │ │ │ │ ├── editor.js │ │ │ │ ├── encryption.js │ │ │ │ ├── general.js │ │ │ │ ├── importExport.js │ │ │ │ ├── keybindings.js │ │ │ │ ├── modules.js │ │ │ │ ├── profiles.js │ │ │ │ ├── showView.js │ │ │ │ └── sync.js │ │ │ └── sidebar/ │ │ │ ├── app.js │ │ │ ├── controller.js │ │ │ ├── template.html │ │ │ ├── templates/ │ │ │ │ └── navbar.html │ │ │ ├── view.js │ │ │ └── views/ │ │ │ └── navbar.js │ │ ├── backbone.noworker.sync.js │ │ ├── backbone.sync.js │ │ ├── behaviors/ │ │ │ ├── content.js │ │ │ ├── modal.js │ │ │ ├── modalForm.js │ │ │ ├── sidebar.js │ │ │ └── sidemenu.js │ │ ├── classes/ │ │ │ ├── encryption.js │ │ │ ├── sjcl.js │ │ │ └── sjcl.worker.js │ │ ├── collections/ │ │ │ ├── configs.js │ │ │ ├── files.js │ │ │ ├── modules/ │ │ │ │ ├── configs.js │ │ │ │ ├── files.js │ │ │ │ ├── module.js │ │ │ │ ├── notebooks.js │ │ │ │ ├── notes.js │ │ │ │ └── tags.js │ │ │ ├── notebooks.js │ │ │ ├── notes.js │ │ │ ├── pageable.js │ │ │ └── tags.js │ │ ├── constants.js │ │ ├── helpers/ │ │ │ ├── db.js │ │ │ ├── fileSaver.js │ │ │ ├── i18next.js │ │ │ ├── keybindings.js │ │ │ ├── migrate.js │ │ │ ├── radio.shim.js │ │ │ ├── storage.js │ │ │ ├── title.js │ │ │ ├── underscore-util.js │ │ │ └── uri.js │ │ ├── init.js │ │ ├── initializers.js │ │ ├── main.js │ │ ├── migrate.js │ │ ├── models/ │ │ │ ├── config.js │ │ │ ├── file.js │ │ │ ├── note.js │ │ │ ├── notebook.js │ │ │ └── tag.js │ │ ├── moduleLoader.js │ │ ├── modules/ │ │ │ ├── codemirror/ │ │ │ │ ├── controller.js │ │ │ │ ├── module.js │ │ │ │ ├── templates/ │ │ │ │ │ └── editor.html │ │ │ │ └── views/ │ │ │ │ └── editor.js │ │ │ ├── dropbox/ │ │ │ │ ├── classes/ │ │ │ │ │ ├── adapter.js │ │ │ │ │ └── sync.js │ │ │ │ └── module.js │ │ │ ├── electronSearch/ │ │ │ │ ├── controller.js │ │ │ │ ├── module.js │ │ │ │ ├── template.html │ │ │ │ └── view.js │ │ │ ├── fileDialog/ │ │ │ │ ├── controller.js │ │ │ │ ├── helper.js │ │ │ │ ├── module.js │ │ │ │ ├── templates/ │ │ │ │ │ ├── dialog.html │ │ │ │ │ └── dropzone.html │ │ │ │ └── views/ │ │ │ │ └── dialog.js │ │ │ ├── fs/ │ │ │ │ ├── classes/ │ │ │ │ │ ├── adapter.js │ │ │ │ │ └── sync.js │ │ │ │ ├── module.js │ │ │ │ ├── templates/ │ │ │ │ │ └── settings.html │ │ │ │ └── views/ │ │ │ │ └── settings.js │ │ │ ├── fuzzySearch/ │ │ │ │ ├── controllers/ │ │ │ │ │ └── main.js │ │ │ │ ├── module.js │ │ │ │ ├── regions/ │ │ │ │ │ └── sidebar.js │ │ │ │ ├── templates/ │ │ │ │ │ ├── composite.html │ │ │ │ │ └── item.html │ │ │ │ └── views/ │ │ │ │ ├── composite.js │ │ │ │ └── item.js │ │ │ ├── importExport/ │ │ │ │ ├── controller.js │ │ │ │ └── module.js │ │ │ ├── linkDialog/ │ │ │ │ ├── controller.js │ │ │ │ ├── module.js │ │ │ │ ├── templates/ │ │ │ │ │ ├── dialog.html │ │ │ │ │ └── item.html │ │ │ │ └── views/ │ │ │ │ ├── collection.js │ │ │ │ ├── dialog.js │ │ │ │ └── item.js │ │ │ ├── markdown/ │ │ │ │ ├── libs/ │ │ │ │ │ ├── markdown-it-file.js │ │ │ │ │ ├── markdown-it-task.js │ │ │ │ │ ├── markdown-it.js │ │ │ │ │ └── markdown.js │ │ │ │ ├── module.js │ │ │ │ └── workers/ │ │ │ │ └── markdown.js │ │ │ ├── mathjax/ │ │ │ │ ├── libs/ │ │ │ │ │ └── mathjax.js │ │ │ │ └── module.js │ │ │ ├── modules.json │ │ │ └── remotestorage/ │ │ │ ├── classes/ │ │ │ │ ├── module.js │ │ │ │ ├── rs.js │ │ │ │ └── sync.js │ │ │ └── module.js │ │ ├── modules.js │ │ ├── regions/ │ │ │ └── regionManager.js │ │ ├── templates/ │ │ │ └── loader.html │ │ ├── views/ │ │ │ ├── brand.js │ │ │ ├── loader.js │ │ │ └── modal.js │ │ └── workers/ │ │ ├── localForage.js │ │ └── sjcl.js │ └── styles/ │ ├── core/ │ │ ├── bootstrap.less │ │ ├── codemirror/ │ │ │ ├── core.less │ │ │ └── theme.less │ │ ├── codemirror.less │ │ ├── editor.less │ │ ├── fontello/ │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── config.json │ │ │ ├── css/ │ │ │ │ ├── animation.less │ │ │ │ ├── fontello-codes.less │ │ │ │ ├── fontello-embedded.less │ │ │ │ ├── fontello-ie7-codes.less │ │ │ │ ├── fontello-ie7.less │ │ │ │ └── fontello.less │ │ │ └── demo.html │ │ ├── fontello.less │ │ ├── fuzzy.less │ │ ├── header.less │ │ ├── layout.less │ │ ├── list.less │ │ ├── main.less │ │ ├── responsive.less │ │ ├── sidemenu.less │ │ ├── utils.less │ │ └── variables.less │ └── theme-default/ │ ├── buttons.less │ ├── checkbox.less │ ├── codemirror.less │ ├── dropzone.less │ ├── editor.less │ ├── forms.less │ ├── header.less │ ├── layout.less │ ├── list.less │ ├── loading-animation.less │ ├── main.less │ ├── modal.less │ ├── prism.less │ ├── settings.less │ ├── sidemenu.less │ ├── utils.less │ └── variables.less ├── bower.json ├── config.xml ├── electron.js ├── gulpfile.js ├── gulps/ │ ├── clean.js │ ├── copy.js │ ├── copyDist.js │ ├── copyRelease.js │ ├── cssmin.js │ ├── electron.js │ ├── htmlManifest.js │ ├── htmlmin.js │ ├── jshint.js │ ├── jsonlint.js │ ├── less.js │ ├── mobile.js │ ├── mocha.js │ ├── nightwatch.js │ ├── npm.js │ ├── prism.js │ ├── require.js │ └── serve.js ├── karma.conf.js ├── package.json ├── preload.js ├── server.js └── test/ ├── .bowerrc ├── bower.json ├── index.html ├── nightwatch.json ├── spec/ │ ├── app.js │ ├── apps/ │ │ ├── confirm/ │ │ │ ├── show/ │ │ │ │ └── view.js │ │ │ └── test.js │ │ ├── encryption/ │ │ │ ├── encrypt/ │ │ │ │ ├── controller.js │ │ │ │ └── view.js │ │ │ └── test.js │ │ ├── help/ │ │ │ ├── about/ │ │ │ │ └── view.js │ │ │ ├── show/ │ │ │ │ └── view.js │ │ │ └── test.js │ │ ├── navbar/ │ │ │ ├── show/ │ │ │ │ └── view.js │ │ │ └── test.js │ │ ├── notebooks/ │ │ │ ├── list/ │ │ │ │ ├── layout.js │ │ │ │ └── views/ │ │ │ │ ├── notebookList.js │ │ │ │ └── tagList.js │ │ │ ├── notebooksForm/ │ │ │ │ └── formView.js │ │ │ ├── tagsForm/ │ │ │ │ └── tagForm.js │ │ │ └── test.js │ │ ├── notes/ │ │ │ ├── list/ │ │ │ │ ├── app.js │ │ │ │ ├── controller.js │ │ │ │ └── views/ │ │ │ │ ├── noteSidebar.js │ │ │ │ └── noteSidebarItem.js │ │ │ └── test.js │ │ └── settings/ │ │ ├── show/ │ │ │ ├── formBehavior.js │ │ │ └── views/ │ │ │ ├── basic.js │ │ │ ├── importExport.js │ │ │ ├── profiles.js │ │ │ ├── shortcuts.js │ │ │ └── showView.js │ │ └── test.js │ ├── backbone.sync.js │ ├── classes/ │ │ ├── encryption.js │ │ ├── helpers.js │ │ └── sjcl.js │ ├── collections/ │ │ ├── configs.js │ │ ├── modules/ │ │ │ ├── configs.js │ │ │ ├── files.js │ │ │ ├── module.js │ │ │ ├── notebooks.js │ │ │ ├── notes.js │ │ │ └── tags.js │ │ ├── notebooks.js │ │ ├── notes.js │ │ ├── pageable.js │ │ └── tags.js │ ├── helpers/ │ │ ├── db.js │ │ ├── i18next.js │ │ ├── storage.js │ │ ├── underscore-util.js │ │ └── uri.js │ ├── init.js │ ├── initializers.js │ ├── models/ │ │ ├── config.js │ │ ├── file.js │ │ ├── note.js │ │ ├── notebook.js │ │ └── tag.js │ ├── moduleLoader.js │ └── test.js └── spec-ui/ ├── commands/ │ ├── addNote.js │ ├── addNotebook.js │ ├── addTag.js │ ├── changeEncryption.js │ ├── closeWelcome.js │ └── findAll.js ├── modules/ │ └── remotestorage/ │ ├── auth.js │ ├── client1.js │ └── client2.js └── tests/ ├── apps/ │ ├── encryption/ │ │ └── encrypt.js │ ├── navbar/ │ │ └── navbar.js │ ├── notebooks/ │ │ ├── form.js │ │ ├── formEdit.js │ │ ├── list.js │ │ └── remove.js │ ├── notes/ │ │ ├── form.js │ │ ├── list.js │ │ └── show.js │ └── settings/ │ ├── general.js │ ├── import.js │ ├── keybindings.js │ └── profiles.js └── modules/ └── fuzzySearch/ └── fuzzySearch.js