gitextract_n6j93f7o/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .shellcheckrc ├── Baskfile ├── LICENSE ├── Makefile ├── README.md ├── bin/ │ ├── bookmark │ └── notes ├── docs/ │ ├── .gitignore │ ├── .rubocop.yml │ ├── .rubocop_todo.yml │ ├── .ruby-version │ ├── .tool-versions │ ├── 404.html │ ├── Gemfile │ ├── _config.yml │ ├── _includes/ │ │ ├── favicon.html │ │ ├── head.html │ │ ├── js/ │ │ │ └── custom.js │ │ ├── nav.html │ │ └── toc.html │ ├── _layouts/ │ │ └── default.html │ ├── _sass/ │ │ └── custom/ │ │ └── custom.scss │ ├── assets/ │ │ └── js/ │ │ ├── link-img-elements.js │ │ └── scroll-highlight.js │ ├── color-themes.md │ ├── index.markdown │ └── index.previous.html ├── etc/ │ ├── README.md │ ├── Vagrantfile │ ├── debian/ │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ └── rules │ ├── nb-completion.bash │ ├── nb-completion.fish │ └── nb-completion.zsh ├── nb ├── nb.go/ │ ├── README.md │ ├── configure_notebook_paths_test.go │ ├── configure_test.go │ ├── contains_test.go │ ├── go.mod │ ├── go.sum │ ├── helpers_test.go │ ├── main.go │ ├── present_test.go │ ├── run_sub_cmd_run_test.go │ └── test/ │ ├── nb-go.bats │ └── test_helper.bash ├── nb.ksh/ │ ├── README.md │ ├── nb │ └── test/ │ ├── nb-ksh.bats │ └── test_helper.bash ├── nb.zsh/ │ ├── README.md │ ├── nb │ └── test/ │ ├── nb-zsh.bats │ └── test_helper.bash ├── package.json ├── package.sh ├── plugins/ │ ├── annotate.dev.nb-plugin │ ├── backlink.nb-plugin │ ├── bump.nb-plugin │ ├── clip.nb-plugin │ ├── daily.nb-plugin │ ├── ebook.nb-plugin │ ├── example.nb-plugin │ ├── turquoise.nb-theme │ └── weather.nb-plugin └── test/ ├── add-template.bats ├── add.bats ├── archive-unarchive.bats ├── bookmark-command.bats ├── bookmark-processing.bats ├── bookmark.bats ├── bookmarks.bats ├── browse-add.bats ├── browse-containers.bats ├── browse-delete.bats ├── browse-edit.bats ├── browse-header-crumbs.bats ├── browse-items.bats ├── browse-notebooks.bats ├── browse-pagination.bats ├── browse-responses.bats ├── browse-search.bats ├── browse-serve.bats ├── browse.bats ├── configuration.bats ├── copy.bats ├── count.bats ├── delete.bats ├── do-undo.bats ├── edit.bats ├── env.bats ├── export.bats ├── fixtures/ │ ├── Example Folder/ │ │ ├── example.com.html │ │ └── example.md │ ├── bin/ │ │ ├── bookmark │ │ ├── mock_editor │ │ ├── mock_editor_no_op │ │ ├── nb │ │ └── notes │ ├── copy-deprecated.nb-plugin │ ├── example-chrome-bookmarks.html │ ├── example-edge-bookmarks.html │ ├── example-firefox-bookmarks-backup.json │ ├── example-firefox-bookmarks.html │ ├── example.asciidoc │ ├── example.com-og.html │ ├── example.com-titles-newlines.html │ ├── example.com-titles.html │ ├── example.com.html │ ├── example.com.md │ ├── example.edu.html │ ├── example.md │ ├── example.net.html │ ├── example.org │ └── example.org.html ├── folders-add-scoped.bats ├── folders-add.bats ├── folders-bookmark.bats ├── folders-count.bats ├── folders-delete.bats ├── folders-edit.bats ├── folders-export.bats ├── folders-history.bats ├── folders-import-download.bats ├── folders-import-move.bats ├── folders-import.bats ├── folders-index-rebuild.bats ├── folders-index-reconcile.bats ├── folders-index.bats ├── folders-list-pinned.bats ├── folders-list.bats ├── folders-ls-pinned.bats ├── folders-ls.bats ├── folders-move.bats ├── folders-search.bats ├── folders-show.bats ├── folders-subcommand.bats ├── git.bats ├── help.bats ├── helpers-build-related-list.bats ├── helpers-file-is-text.bats ├── helpers-get-content.bats ├── helpers-get-id-selector.bats ├── helpers-get-unique-relative-path.bats ├── helpers-get-uri.bats ├── helpers-highlight-syntax.bats ├── helpers-normalize-options.bats ├── helpers-render.bats ├── helpers-resolve-links.bats ├── helpers-selector-resolve-folders.bats ├── helpers-selector-resolve-path.bats ├── helpers-spinner.bats ├── helpers-string-is-email.bats ├── helpers-string-is-url.bats ├── helpers-web-browser.bats ├── helpers.bats ├── history.bats ├── import-bookmarks.bats ├── import.bats ├── index-rebuild.bats ├── index-reconcile.bats ├── index.bats ├── init.bats ├── list-pagination.bats ├── list.bats ├── ls-pagination.bats ├── ls.bats ├── move-rename.bats ├── move.bats ├── notebook-resolution.bats ├── notebooks-add.bats ├── notebooks-author.bats ├── notebooks-current.bats ├── notebooks-delete.bats ├── notebooks-export.bats ├── notebooks-import.bats ├── notebooks-init.bats ├── notebooks-notebook.bats ├── notebooks-rename.bats ├── notebooks-show.bats ├── notebooks-use.bats ├── notebooks.bats ├── open.bats ├── pin-unpin.bats ├── plugin-backlink.bats ├── plugin-bump.bats ├── plugin-daily.bats ├── plugin-ebook.bats ├── plugin-example.bats ├── plugin-weather.bats ├── plugins.bats ├── remote-delete.bats ├── remote-remove.bats ├── remote-rename.bats ├── remote-reset.bats ├── remote-set.bats ├── remote.bats ├── run.bats ├── scope.bats ├── search-list-tags.bats ├── search-logic.bats ├── search-pagination.bats ├── search-tags.bats ├── search.bats ├── settings.bats ├── show-info-line.bats ├── show-render.bats ├── show.bats ├── status.bats ├── subcommands.bats ├── sync-branches.bats ├── sync-folders.bats ├── sync.bats ├── t.bats ├── test_helper.bash ├── todo-add.bats ├── todo-delete.bats ├── todo-tasks.bats ├── todo.bats ├── unset.bats ├── use.bats └── version.bats