From 94f3d912c4b4e4c081bea7cdfcdaf019a8d898d7 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sun, 15 Oct 2023 00:50:39 +0300 Subject: [PATCH] notes... Signed-off-by: Alex A. Naanou --- experiments/outline-editor/index.html | 35 +++++++++++++-------------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/experiments/outline-editor/index.html b/experiments/outline-editor/index.html index e05f35b..ac8781a 100755 --- a/experiments/outline-editor/index.html +++ b/experiments/outline-editor/index.html @@ -52,6 +52,7 @@ var setup = function(){ - FEATURE: read-only mode - FEATURE: `collapse-children:: true` block option -- when loading collapse all immediate children - FF: figure out a way to draw expand/collapse bullets without the use of CSS' `:has(..)` + - a way to make a block monospace (???) - show list bullet if node is empty but edited... (???) - Code blocks and bullets: - ``` @@ -139,6 +140,22 @@ var setup = function(){ - Docs - - ## TEST + - ### Controls + - ASAP: these need updating... + - | Key | Action | + | up | focus node above | + | down | focus node below | + | left | focus parent node | + | right | focus first child node | + | tab | indent node | + | s-tab | deindent node | + | s-pgup | shift node up | + | s-pgdown | shift node down | + | s-left | collapse node | + | s-right | expand node | + | enter | normal mode: edit node | + | | edit mode: create node below | + | esc | exit edit mode | - ### Formatting: - Styles - # Heading 1 @@ -254,24 +271,6 @@ var setup = function(){ -
-
-Controls:
-	up         - focus node above
-	down       - focus node below
-	left       - focus parent node
-	right      - focus first child node
-	tab        - indent node
-	s-tab      - deindent node
-	s-pgup     - shift node up
-	s-pgdown   - shift node down
-	s-left     - collapse node
-	s-right    - expand node
-	enter      - normal mode: edit node
-	           - edit mode: create node below
-	esc        - exit edit mode 
-
-