Lysergic
01/15/2022, 1:54 PMmihaiconstantin
01/15/2022, 4:46 PMjournal
notes (i.e., created by cmd/ctrl+shift+j
) without having to recreate the entire schema as shown here (i.e., https://wiki.dendron.so/notes/c5e5adde-5459-409b-b34d-a0d75cbb1052/#template)?kevins8
01/15/2022, 5:26 PMkevins8
01/15/2022, 5:28 PMmihaiconstantin
01/15/2022, 5:28 PMmihaiconstantin
01/15/2022, 5:55 PMctrl/cmd+shift+j
shortcut creates journal entries following the journal
schema. Is it possible to customize this shortcut (i.e., also the button in the lookup bar) to use an arbitrary schema?mihaiconstantin
01/15/2022, 5:58 PMschema
with the pattern: journal
as you already mentioned. But I am just curious whether the kindbindings can be changed.kevins8
01/15/2022, 6:49 PMmihaiconstantin
01/15/2022, 7:03 PMkevins8
01/15/2022, 7:12 PMmihaiconstantin
01/15/2022, 7:17 PMkevins8
01/15/2022, 7:24 PMbanjara
01/15/2022, 8:27 PMDendron: Initialize Workspace
the same as the File>Save Workspace As
?patchwork
01/15/2022, 8:47 PMSeriousBug
01/15/2022, 8:58 PMNezteb
01/15/2022, 9:30 PMkevins8
01/15/2022, 10:31 PMtask.*
hierarchy, write a script that watches it (eg. could be on git push or locally), pares the frontmatter for due date and execute a taskmihaiconstantin
01/16/2022, 7:34 PM(?)
symbol for Unknown Schema
disabled by default, or has it been removed recently? I can't get Dendron to show it for notes that don't match a schema.amar
01/16/2022, 8:17 PMassetPrefix
issues -- when I run npx dendron-publish-drawio
, it tries looking for diagrams in .next/public/<assetPrefix>/assets/...
while they're in .next/public/assets/...
(ENOENT), is it meant to be like that?SeriousBug
01/16/2022, 9:05 PMlukecarrier
01/16/2022, 9:06 PMClifton
01/16/2022, 11:01 PMSeriousBug
01/16/2022, 11:48 PMClifton
01/16/2022, 11:57 PMSeriousBug
01/17/2022, 12:04 AMdendron publish export
CLI command, and then set up your hosting to serve the .next/out
folder. I can't find any tutorials for hostinger unfortunately.Clifton
01/17/2022, 1:02 AMmihaiconstantin
01/17/2022, 7:46 AMJavaScript
code be injected in templates via the {{...}}
, but I don't recall this being documented anywhere. Will this continue to be allowed in the future?SeriousBug
01/17/2022, 7:47 AMmihaiconstantin
01/17/2022, 7:58 AMtemplate.proj
applied via a schema to notes `proj.*`:
markdown
---
id: BMZcgeNY0vEUKFjh5wtgL
title: Project Template
desc: ''
updated: 1642405401835
created: 1642401770156
---
Result: {{ 1 + 1 }}
The {{ 1 + 1 }}
will be executed and rendered in the note as 2
. And this seems to be the case for any valid JavaScript
code.mihaiconstantin
01/17/2022, 8:01 AM