tlylt
12/08/2022, 12:12 AMhikchoi
12/08/2022, 12:48 AMhikchoi
12/08/2022, 12:51 AMhikchoi
12/08/2022, 12:52 AMBassmann
12/08/2022, 8:04 PMmichaelvolk
12/08/2022, 10:48 PMtlylt
12/08/2022, 11:46 PMhikchoi
12/09/2022, 4:11 AMLividJava
12/09/2022, 2:45 PMalucard
12/09/2022, 5:00 PMScriptAutomate
12/09/2022, 5:57 PMScriptAutomate
12/09/2022, 5:59 PMsiteHierarchies
if you mean not wanting it published? https://wiki.dendron.so/notes/q960Z622o0RLO32w0B8SP/#sitehierarchies
When you say "category" to do you mean "hierarchy" or do you mean "tags" or?LividJava
12/09/2022, 6:02 PMcharacter.bob
and meta.guide
I want character to be listed in the navigation side bar, but i want meta to be hidden, and still published so i can link to it as neededLividJava
12/09/2022, 6:03 PMLividJava
12/09/2022, 6:04 PMScriptAutomate
12/09/2022, 6:12 PMmeta
using nav_exclude: true
, that it will exclude the meta.*
hierarchy but still publish the pagesLividJava
12/09/2022, 6:12 PMmeta
is just a stub so i'll just make the page for it then and all of its children will be excludedLividJava
12/09/2022, 6:12 PMLividJava
12/09/2022, 6:13 PMScriptAutomate
12/09/2022, 6:13 PMScriptAutomate
12/09/2022, 6:14 PMLividJava
12/09/2022, 6:14 PMLividJava
12/09/2022, 6:14 PMNiobiumRedwood
12/09/2022, 7:25 PMScriptAutomate
12/09/2022, 9:00 PMK-RITE
12/10/2022, 11:09 AMTeltrix
12/10/2022, 11:07 PMbenhsm | Jack of N trades
12/11/2022, 2:13 PMsh
#!/bin/sh
# Looks up a Dendron note and opens it in an editor
# Dependencies:
# fzf, fd, dendron-cli
#
# Required env variables:
# DENDRON_DIR -> Set to workspace root directory
# DENDRON_VAULT -> Set this to the vault you want to use
# Usage: if a note exists, select it from the fzf prompt with 'enter' to view/edit it.
# if the note doesn't exist, use the binding 'ctrl-l' to create a new note with that name
cd "$DENDRON_VAULT" || exit
NOTE="${1:-$(fd -c never --exclude assets --exclude "./*.yml" --strip-cwd-prefix | sed -E 's/\.[^.]*$//' | fzf --height 90% --margin 5% --layout=reverse --border --bind ctrl-l:print-query --preview='bat --terminal-width 70 --wrap=auto --style numbers,changes --color=always {}.md')}"
if test -z "$NOTE"; then
# printf "\nNo input. Doing nothing.\n"
exit;
fi;
if test -f "$NOTE.md"; then
exec $EDITOR "${NOTE}.md" || echo "There was a problem"
else
dendron note lookup_legacy --quiet --wsRoot "$DENDRON_DIR" --attach --useLocalEngine --enginePort 3999 --query "$NOTE"
exec "$EDITOR" + "${NOTE}.md" || echo "There was a problem"
fi
clear
benhsm | Jack of N trades
12/11/2022, 2:20 PMsubject-1.<name-date>
subject-2.<name-date>
subject-3.<name-date>
In a flat folder. As for code files, I believe dendron will still index those, or at least won't mess with them
If you want to keep on using folders, you could try a setup where you have a dendron vault per subjectK-RITE
12/11/2022, 5:31 PM