https://www.dendron.so/ logo
Join Discord
Powered by
# questions
  • k

    kevins8

    08/04/2020, 6:54 PM
    @User made a short todo case study. let me know if this is helpful: https://www.dendron.so/notes/593206ea-5658-4874-bafd-18a138870f91.html
  • r

    runlevelrobot

    08/04/2020, 7:15 PM
    thanks Kevin that helps
  • r

    runlevelrobot

    08/04/2020, 7:15 PM
    Can anybody recommend a good markdown cheatsheet?
  • k

    kevins8

    08/04/2020, 7:19 PM
    https://www.markdownguide.org/cheat-sheet/
  • r

    runlevelrobot

    08/04/2020, 7:22 PM
    thx man
  • b

    Buxel

    08/04/2020, 7:44 PM
    @kevins8 spot on! Thank you for this video. I will try this first thing tomorrow . 👍
  • r

    runlevelrobot

    08/04/2020, 10:14 PM
    uhhh I am having some issues with trying to get the schema working. (I'm sure it's me). I have a schema file name pro.schema.yml and I have this in it. - id: pro desc: projects parent: root children: - work - id: work namespace: true children: - python - id: python namespace: true desc: python projects 2020
  • r

    runlevelrobot

    08/04/2020, 10:14 PM
    I am trying to be able to type pro.work.python.blah and have it fill in a description and use a template
  • r

    runlevelrobot

    08/04/2020, 10:15 PM
    what am i do wrong?
  • k

    kevins8

    08/04/2020, 10:23 PM
    Copy code
    - id: pro
      desc: projects
      parent: root
      children:
        - work
    - id: work # this matches pro.work.*.python
      namespace: true
      children:
        - python
    - id: python
      namespace: true
      desc: python projects 2020
  • k

    kevins8

    08/04/2020, 10:24 PM
    you can fix it by removing
    namespace
    from
    work
  • r

    runlevelrobot

    08/04/2020, 10:28 PM
    Ok so with that i am typiing in pro.work.python.blah and I hit create page but there is no description that is automatically inserted
  • k

    kevins8

    08/04/2020, 11:35 PM
    hmm, i think this might be on our end. will take a look
  • r

    runlevelrobot

    08/04/2020, 11:47 PM
    ok thanks
  • k

    kevins8

    08/05/2020, 1:03 AM
    ran through a bunch of scenarios. in the case where
    pro.work.python
    doesn't exist, dendron will show you the description
  • k

    kevins8

    08/05/2020, 1:04 AM
    after its created, the descriptions will no longer be displayed because we switch to drawing the description from the note instead of the schema
  • k

    kevins8

    08/05/2020, 1:05 AM
    you can see that if you create a description in the note and then
    Reload index
  • k

    kevins8

    08/05/2020, 1:06 AM
    going to change the default behavior where new notes will have the description of their schemas (if applicable)
  • k

    kevins8

    08/05/2020, 1:06 AM
    just to make sure i'm not completely off the ball, was this the issue you were referring to @User ?
  • r

    runlevelrobot

    08/05/2020, 1:19 AM
    Yep you got it
  • k

    kevins8

    08/05/2020, 1:25 AM
    @User its been fixed in v0.5.8 which is out as of 30s ago 🙂
  • r

    runlevelrobot

    08/05/2020, 1:31 AM
    Awesome thanks!
  • d

    denisdifazio

    08/05/2020, 4:05 PM
    is there a way to make a schema template works on all levels and not just the first one? for example, I created the following schema:
    Copy code
    - id: aws
      desc: ""
      parent: root
      namespace: true
      template:
        id: aws.template
        type: note
    the template works for
    aws.*
    but not for
    aws.*.*
    and
    aws.*.*.*
    and so on
  • k

    kevins8

    08/05/2020, 4:11 PM
    to apply schema templates to additional levels, you would need to specify them as children of the
    aws
    schema`
    Copy code
    yml
    - id: aws # this matches aws.*
      desc: ""
      parent: root
      namespace: true
      template:
        id: aws.template
        type: note
      children:
        - quickstart
    - id: quickstart # this matches aws.*.quickstart
      namespace: true
      template:
        id: aws.template
        type: note
  • k

    kevins8

    08/05/2020, 4:11 PM
    what's the use case you are going for?
  • d

    denisdifazio

    08/05/2020, 4:52 PM
    I want all descendants from
    aws
    to begin with a "header" as:
    Copy code
    tags: #aws
    links:
    so if I create a new item
    aws.billings.budgets.md
    , it will start with it:
    Copy code
    ---
    id: 729433a5-b217-4d65-ab7d-f48581aafbef
    title: budgets
    desc: ''
    updated: 1596641106173
    created: 1596641106173
    ---
    
    tags: #aws
    links:
    
    ---
    I will use
    links
    to connect to the parent item, so in this example it will be
    links: [[aws.billings]]
  • r

    runlevelrobot

    08/05/2020, 4:59 PM
    How do you turn on auto suggestions?
  • k

    kevins8

    08/05/2020, 9:39 PM
    @User for snippets? schemas?
  • r

    runlevelrobot

    08/05/2020, 9:41 PM
    For wiki links
  • k

    kevins8

    08/05/2020, 9:44 PM
    - create wikilink brackets and start typing, eg:
    [[pro]]
    - use the vscode intellisense shortcut (https://code.visualstudio.com/docs/editor/intellisense#_key-bindings) to trigger the autocomplete note: you'll need to start with a naked wiki-link to trigger the autocomplete
12345...757Latest