├── .gitignore ├── LICENSE ├── README.md ├── plugins └── notebook-mobile │ ├── js │ ├── notebookSidebarNav.js │ └── notebookSidebarNav.js.meta │ └── plugin.info ├── screenshots ├── beige.png ├── grey.png ├── mobile.png └── sidebar.png ├── themes └── notebook │ ├── LICENSE.tid │ ├── ThemeTweaks.tid │ ├── base.tid │ ├── changelog.tid │ ├── config │ └── index.multids │ ├── images │ ├── bars.tid │ ├── caret-down.tid │ ├── caret-right.tid │ └── color-switch.tid │ ├── metrics │ ├── bodyfontsize.tid │ ├── bodylineheight.tid │ ├── sidebar-width.tid │ ├── story-width.tid │ └── topbar-height.tid │ ├── options.multids │ ├── overrides │ ├── $__core_ui_PageTemplate_sidebar.tid │ └── $__themes_tiddlywiki_vanilla_themetweaks.tid │ ├── palettes │ ├── palette-beige │ ├── palette-beige.meta │ ├── palette-dark │ ├── palette-dark.meta │ ├── palette-grey │ └── palette-grey.meta │ ├── plugin.info │ ├── settings │ ├── codefontfamily.tid │ └── fontfamily.tid │ ├── shortcuts │ ├── notebook-focus-search.tid │ └── toggle-sidebar.tid │ ├── stickytitles.tid │ ├── tags │ ├── Sidebar.tid │ └── SidebarSection.tid │ └── ui │ ├── Bottombar.tid │ ├── Buttons │ ├── SwitchPalette.tid │ └── menu.tid │ ├── Search.tid │ ├── Sidebar.tid │ ├── Sidebar │ ├── Headings.tid │ ├── Search.tid │ ├── SearchResults.tid │ ├── SectionTemplate.tid │ └── Sections.tid │ └── Topbar.tid ├── tiddlers ├── $__DefaultTiddlers.tid ├── $__SiteSubtitle.tid ├── $__SiteTitle.tid ├── $__StoryList.tid ├── $__palette.tid ├── $__plugins_nico_shields.json ├── $__plugins_nico_shields.json.meta ├── $__theme.tid ├── Customizing.tid ├── Install.tid └── Notebook theme.tid └── tiddlywiki.info /.gitignore: -------------------------------------------------------------------------------- 1 | /output/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/README.md -------------------------------------------------------------------------------- /plugins/notebook-mobile/js/notebookSidebarNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/plugins/notebook-mobile/js/notebookSidebarNav.js -------------------------------------------------------------------------------- /plugins/notebook-mobile/js/notebookSidebarNav.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/plugins/notebook-mobile/js/notebookSidebarNav.js.meta -------------------------------------------------------------------------------- /plugins/notebook-mobile/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/plugins/notebook-mobile/plugin.info -------------------------------------------------------------------------------- /screenshots/beige.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/screenshots/beige.png -------------------------------------------------------------------------------- /screenshots/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/screenshots/grey.png -------------------------------------------------------------------------------- /screenshots/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/screenshots/mobile.png -------------------------------------------------------------------------------- /screenshots/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/screenshots/sidebar.png -------------------------------------------------------------------------------- /themes/notebook/LICENSE.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/LICENSE.tid -------------------------------------------------------------------------------- /themes/notebook/ThemeTweaks.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ThemeTweaks.tid -------------------------------------------------------------------------------- /themes/notebook/base.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/base.tid -------------------------------------------------------------------------------- /themes/notebook/changelog.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/changelog.tid -------------------------------------------------------------------------------- /themes/notebook/config/index.multids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/config/index.multids -------------------------------------------------------------------------------- /themes/notebook/images/bars.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/images/bars.tid -------------------------------------------------------------------------------- /themes/notebook/images/caret-down.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/images/caret-down.tid -------------------------------------------------------------------------------- /themes/notebook/images/caret-right.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/images/caret-right.tid -------------------------------------------------------------------------------- /themes/notebook/images/color-switch.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/images/color-switch.tid -------------------------------------------------------------------------------- /themes/notebook/metrics/bodyfontsize.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/metrics/bodyfontsize.tid -------------------------------------------------------------------------------- /themes/notebook/metrics/bodylineheight.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/metrics/bodylineheight.tid -------------------------------------------------------------------------------- /themes/notebook/metrics/sidebar-width.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/metrics/sidebar-width.tid -------------------------------------------------------------------------------- /themes/notebook/metrics/story-width.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/metrics/story-width.tid -------------------------------------------------------------------------------- /themes/notebook/metrics/topbar-height.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/metrics/topbar-height.tid -------------------------------------------------------------------------------- /themes/notebook/options.multids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/options.multids -------------------------------------------------------------------------------- /themes/notebook/overrides/$__core_ui_PageTemplate_sidebar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/overrides/$__core_ui_PageTemplate_sidebar.tid -------------------------------------------------------------------------------- /themes/notebook/overrides/$__themes_tiddlywiki_vanilla_themetweaks.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/overrides/$__themes_tiddlywiki_vanilla_themetweaks.tid -------------------------------------------------------------------------------- /themes/notebook/palettes/palette-beige: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/palettes/palette-beige -------------------------------------------------------------------------------- /themes/notebook/palettes/palette-beige.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/palettes/palette-beige.meta -------------------------------------------------------------------------------- /themes/notebook/palettes/palette-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/palettes/palette-dark -------------------------------------------------------------------------------- /themes/notebook/palettes/palette-dark.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/palettes/palette-dark.meta -------------------------------------------------------------------------------- /themes/notebook/palettes/palette-grey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/palettes/palette-grey -------------------------------------------------------------------------------- /themes/notebook/palettes/palette-grey.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/palettes/palette-grey.meta -------------------------------------------------------------------------------- /themes/notebook/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/plugin.info -------------------------------------------------------------------------------- /themes/notebook/settings/codefontfamily.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/settings/codefontfamily.tid -------------------------------------------------------------------------------- /themes/notebook/settings/fontfamily.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/settings/fontfamily.tid -------------------------------------------------------------------------------- /themes/notebook/shortcuts/notebook-focus-search.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/shortcuts/notebook-focus-search.tid -------------------------------------------------------------------------------- /themes/notebook/shortcuts/toggle-sidebar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/shortcuts/toggle-sidebar.tid -------------------------------------------------------------------------------- /themes/notebook/stickytitles.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/stickytitles.tid -------------------------------------------------------------------------------- /themes/notebook/tags/Sidebar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/tags/Sidebar.tid -------------------------------------------------------------------------------- /themes/notebook/tags/SidebarSection.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/tags/SidebarSection.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Bottombar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Bottombar.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Buttons/SwitchPalette.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Buttons/SwitchPalette.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Buttons/menu.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Buttons/menu.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Search.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Search.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Sidebar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Sidebar.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Sidebar/Headings.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Sidebar/Headings.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Sidebar/Search.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Sidebar/Search.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Sidebar/SearchResults.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Sidebar/SearchResults.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Sidebar/SectionTemplate.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Sidebar/SectionTemplate.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Sidebar/Sections.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Sidebar/Sections.tid -------------------------------------------------------------------------------- /themes/notebook/ui/Topbar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/themes/notebook/ui/Topbar.tid -------------------------------------------------------------------------------- /tiddlers/$__DefaultTiddlers.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/$__DefaultTiddlers.tid -------------------------------------------------------------------------------- /tiddlers/$__SiteSubtitle.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/$__SiteSubtitle.tid -------------------------------------------------------------------------------- /tiddlers/$__SiteTitle.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/$__SiteTitle.tid -------------------------------------------------------------------------------- /tiddlers/$__StoryList.tid: -------------------------------------------------------------------------------- 1 | list: [[Notebook theme]] Install Customizing 2 | title: $:/StoryList -------------------------------------------------------------------------------- /tiddlers/$__palette.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/$__palette.tid -------------------------------------------------------------------------------- /tiddlers/$__plugins_nico_shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/$__plugins_nico_shields.json -------------------------------------------------------------------------------- /tiddlers/$__plugins_nico_shields.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/$__plugins_nico_shields.json.meta -------------------------------------------------------------------------------- /tiddlers/$__theme.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/$__theme.tid -------------------------------------------------------------------------------- /tiddlers/Customizing.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/Customizing.tid -------------------------------------------------------------------------------- /tiddlers/Install.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/Install.tid -------------------------------------------------------------------------------- /tiddlers/Notebook theme.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlers/Notebook theme.tid -------------------------------------------------------------------------------- /tiddlywiki.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Notebook/HEAD/tiddlywiki.info --------------------------------------------------------------------------------