mirror of
https://github.com/callumalpass/tasknotes.git
synced 2026-07-22 12:50:26 +00:00
update docs
This commit is contained in:
parent
83d8676d52
commit
ae59072a17
2 changed files with 30 additions and 30 deletions
|
|
@ -48,7 +48,7 @@ The filter bar provides several ways to narrow down the displayed tasks:
|
|||
|
||||
## Sorting and Grouping
|
||||
|
||||
**Sorting**: Click column headers to sort by that field. Click again to reverse the sort order. Available sort fields include:
|
||||
**Sorting**:
|
||||
- Title (alphabetical)
|
||||
- Status (by configured status order)
|
||||
- Priority (by configured priority weight)
|
||||
|
|
@ -69,7 +69,6 @@ The filter bar provides several ways to narrow down the displayed tasks:
|
|||
**Direct Editing**:
|
||||
- Click task titles to open the full task note
|
||||
- Click status or priority indicators to cycle through options
|
||||
- Some fields support inline editing when clicked
|
||||
|
||||
**Context Menus**: Right-click any task for additional actions:
|
||||
- Open in new tab or split pane
|
||||
|
|
@ -95,7 +94,6 @@ The filter bar provides several ways to narrow down the displayed tasks:
|
|||
|
||||
The Task View is optimized for large numbers of tasks:
|
||||
|
||||
- **Virtual Scrolling**: Only visible rows are rendered, maintaining performance with thousands of tasks
|
||||
- **Efficient Filtering**: Filters use indexed data for fast response
|
||||
- **Incremental Updates**: Only changed tasks are re-rendered when data updates
|
||||
|
||||
|
|
@ -105,4 +103,4 @@ The Task View is optimized for large numbers of tasks:
|
|||
|
||||
**Note Integration**: Tasks created from other notes (using inline conversion) appear in the Task View immediately.
|
||||
|
||||
**External Updates**: Changes made to task files outside TaskNotes are reflected in the view automatically through Obsidian's metadata cache.
|
||||
**External Updates**: Changes made to task files outside TaskNotes are reflected in the view automatically through Obsidian's metadata cache.
|
||||
|
|
|
|||
54
mkdocs.yml
54
mkdocs.yml
|
|
@ -5,33 +5,35 @@ site_author: Callum Alpass
|
|||
repo_name: callumalpass/tasknotes
|
||||
repo_url: https://github.com/callumalpass/tasknotes
|
||||
|
||||
# Configuration
|
||||
theme:
|
||||
name: material
|
||||
palette:
|
||||
- scheme: default
|
||||
primary: deep purple
|
||||
accent: purple
|
||||
toggle:
|
||||
icon: material/brightness-7
|
||||
name: Switch to dark mode
|
||||
- scheme: slate
|
||||
primary: deep purple
|
||||
accent: purple
|
||||
toggle:
|
||||
icon: material/brightness-4
|
||||
name: Switch to light mode
|
||||
font:
|
||||
text: Roboto
|
||||
code: Roboto Mono
|
||||
name: material # Use the Material theme
|
||||
# You can add theme-specific features here later, like palettes, fonts, logos, etc.
|
||||
features:
|
||||
- navigation.tabs
|
||||
- navigation.sections
|
||||
- navigation.expand
|
||||
- navigation.path
|
||||
- navigation.top
|
||||
- search.highlight
|
||||
- search.share
|
||||
- content.code.copy
|
||||
# - navigation.tabs
|
||||
- search.suggest
|
||||
font:
|
||||
text: Crimson Text
|
||||
palette:
|
||||
- media: "(prefers-color-scheme)"
|
||||
accent: purple
|
||||
primary: white
|
||||
toggle:
|
||||
icon: material/brightness-auto
|
||||
name: Switch to light mode
|
||||
- media: "(prefers-color-scheme: light)"
|
||||
scheme: default
|
||||
accent: purple
|
||||
primary: white
|
||||
toggle:
|
||||
icon: material/toggle-switch
|
||||
name: Switch to dark mode
|
||||
- media: "(prefers-color-scheme: dark)"
|
||||
scheme: slate
|
||||
accent: purple
|
||||
primary: black
|
||||
toggle:
|
||||
icon: material/toggle-switch-off-outline
|
||||
|
||||
nav:
|
||||
- Home: index.md
|
||||
|
|
@ -69,4 +71,4 @@ markdown_extensions:
|
|||
- attr_list
|
||||
|
||||
extra_css:
|
||||
- stylesheets/extra.css
|
||||
- stylesheets/extra.css
|
||||
|
|
|
|||
Loading…
Reference in a new issue