user
06/23/2021, 4:28 PMkevins8
06/23/2021, 4:36 PMdendron.yml
yml
journal:
dailyDomain: daily
name: journal
dateFormat: y.MM.dd
addBehavior: childOfDomainNamespace
firstDayOfWeek: 1
user
06/23/2021, 5:00 PMorg-workspace/seeds/dendron.dendron-site/vault/daily.journal.2021.06.23.md
. How do I make it so that it gets created inside org-private?kevins8
06/23/2021, 5:25 PMkevins8
06/23/2021, 5:25 PMjyeung
06/24/2021, 10:25 AMKiran
06/25/2021, 2:30 PMKiran
06/25/2021, 2:30 PMvicrerdgz
06/25/2021, 9:29 PMkevins8
06/27/2021, 12:48 AMkevins8
06/27/2021, 12:48 AMvicrerdgz
06/27/2021, 8:57 AMvicrerdgz
06/27/2021, 8:59 AMkevins8
06/27/2021, 3:05 PMkevins8
06/28/2021, 5:19 PMSeriousBug
06/29/2021, 6:51 AM. The same link works in the preview, but not in the hover. It does work in hover if I turn it into an absolute path (e.g.  though, so it's an issue of finding the image.kevins8
06/29/2021, 3:19 PMSeriousBug
06/29/2021, 3:22 PMhikchoi
07/01/2021, 12:57 AMNotePropsDict
just a wrapper around key-value pairs of NoteProps
and their ids? I see a few _.values(engine.notes)
around but it seems like it's not grabbing anything out of the dict. wondering what I'm blanking on here 😅kevins8
07/01/2021, 1:48 AMhikchoi
07/01/2021, 1:50 AMengine.notes
shows me all the kvps but _.values()
return an empty array? same thing for Object.values()
kevins8
07/01/2021, 1:50 AMhikchoi
07/01/2021, 2:00 AMconst getUnreferencedLinks = ({
ast,
note,
engine,
}: {
ast: DendronASTNode;
note: NoteProps;
engine: DEngineClient;
}) => {
const textNodes: Node[] = [];
visit(
...
)
const unreferencedLinks: UnreferencedLink[] = [];
// this will print kvps of all notes correctly.
console.log(engine.notes);
// this is an empty array.
const notes = _.values(engine.notes);
console.log(notes);
_.forEach(notes, (note) => {
...
});
return unreferencedLinks;
}
hikchoi
07/01/2021, 2:03 AMkevins8
07/01/2021, 2:10 AMdebugger
in there?kevins8
07/01/2021, 2:11 AMkevins8
07/01/2021, 2:12 AMhikchoi
07/01/2021, 2:14 AMkevins8
07/01/2021, 2:15 AMhikchoi
07/01/2021, 2:15 AM