kevins8
11/16/2020, 1:43 PMkevins8
11/16/2020, 1:44 PMkevins8
11/16/2020, 1:44 PMuser
11/16/2020, 1:45 PMmhmd
11/16/2020, 5:26 PMtfer
11/16/2020, 6:30 PMtfer
11/16/2020, 6:37 PMkevins8
11/16/2020, 6:47 PMkevins8
11/16/2020, 6:47 PMthm
11/16/2020, 8:05 PM[[foo.b]] autocompletes to [[foo.bar]] correctly upon pressing Ctrl+Space, but [[FooBar|foo.b]] doesn't - is this worth a bug report?tfer
11/16/2020, 8:15 PMTemplate button on dendron-site as this holds the notes that are used to generate the Dendron.so site and I'm kicking around a few changes/additions to this documentation. Templates are a new github thing to me, I'm still working on wrapping my mind around them. Reading the github documentation on them they seem to be of two minds on them, on the one hand, they seemed to be a light weight forking mechanism, on the other, for when you are more into using the solution the repo provides for your own work. I used this for my description for the template pushing the button placed on my github account:
source for dendron.so site (documents the use and commands of Dendron), can also be "emptied" & serve personal usage.
Am I right about this? Could I empty out the vault, git clone it locally, and open it in vscode, put my notes on markdown it, develop them further periodically commiting changes locally and to github?
Further, does the "extra" machinery in the repo support publishing to a gist or web site from github itself, without setting up ruby, jeklly, ... on your own machine?tfer
11/16/2020, 8:16 PMHioko
11/16/2020, 8:26 PMHioko
11/16/2020, 8:26 PMtsnieman
11/17/2020, 2:03 AM- id: year
pattern: "[0-2][0-9][0-9][0-9]"
- id: month
pattern: "[0-9][0-9]"
- id: day
pattern: "[0-9][0-9]"
...
((ref:[[work.journal.__year__.__month__.__day__]]#Tasks:*))kevins8
11/17/2020, 3:50 AMtsnieman
11/17/2020, 6:57 AMuser
11/17/2020, 7:07 AMthm
11/17/2020, 3:03 PMfudo
11/17/2020, 4:01 PMkevins8
11/17/2020, 4:54 PMDendron: Doctor 😇kevins8
11/17/2020, 4:55 PMuser
11/18/2020, 4:54 AM- id: daily
parent: root
children:
- journal
- id: journal
namespace: true
template:
id: daily.template
I have a file called daily.template.md that is a standard Dendron note with a couple of sections:
---
id: 1658e8ac-3277-481a-9597-e872d770802b
title: Template
desc: ''
updated: 1605661004930
created: 1605660948271
---
# Meetings
# Management Journal
# Other
But - when I create a new note with control+shift+i the template is ignored. I did a Dendron:Reload without any errors.kevins8
11/18/2020, 4:59 AMdaily.journal.{yyyy.mm.dd} format. if that's how yours are, you would need something like the below to match the notes
version: 1
schemas:
- id: daily
title: daily
desc: ""
parent: root
children:
- journal
- id: journal
title: journal
desc: ""
parent: root
children:
- year
- id: year
title: year
pattern: "[0-2][0-9][0-9][0-9]"
children:
- month
- id: month
title: month
pattern: "[0-9][0-9]"
children:
- day
- id: day
title: day
pattern: "[0-9][0-9]"
namespace: true
template:
id: daily.template.journal
type: noteuser
11/18/2020, 5:09 AMtilted
11/18/2020, 5:24 AMuser
11/18/2020, 5:43 AMuser
11/18/2020, 5:54 AMkevins8
11/18/2020, 6:02 AMkevins8
11/18/2020, 6:04 AM