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

    user

    07/31/2020, 9:57 PM
    Looks like the Markdown links page is missing, not sure how to create links. I also have no experience with VS
  • k

    kevins8

    07/31/2020, 10:02 PM
    that's a bug for the rendered website, will be fixing it. it should work locally in your workspace if you click the link. the recommended way of doing links in dendron is wiki links eg:
    [[dendron.faq]]
  • k

    kevins8

    07/31/2020, 10:03 PM
    you can add a name to your link with the
    |
    character, eg.
    [[ FAQ | dendron.faq ]]
  • u

    user

    07/31/2020, 10:20 PM
    How do I create a new note automatically and link it from my current note
  • k

    kevins8

    07/31/2020, 10:22 PM
    You can create a scratch note for ad hoc notes: https://www.dendron.so/notes/5c213aa6-e4ba-49e8-85c5-1bdcb33ce202.html#scratch-note This is what we did in the demo. Otherwise, you can use the lookup (https://www.dendron.so/notes/a7c3a810-28c8-4b47-96a6-8156b1524af3.html#creating-notes) to create new notes
  • r

    runlevelrobot

    08/02/2020, 2:48 PM
    Are backlinks not working right now?
  • k

    kevins8

    08/02/2020, 2:49 PM
    they should be - do you have
    Dendron Markdown Links
    extension installed?
  • r

    runlevelrobot

    08/02/2020, 2:49 PM
    ok let me check
  • r

    runlevelrobot

    08/02/2020, 2:50 PM
    yes i do
  • r

    runlevelrobot

    08/02/2020, 2:50 PM
    so how do i create one?
  • r

    runlevelrobot

    08/02/2020, 2:50 PM
    Or how does one get created automatically?
  • k

    kevins8

    08/02/2020, 2:51 PM
    when you add a link from one note to another, it will show up in the backlink panel
  • k

    kevins8

    08/02/2020, 2:51 PM
    eg. you are in
    foo.md
    and you add a link like
    [[bar]]
    inside it. going to
    bar.md
    , you will see a backlink referencing
    foo.md
  • r

    runlevelrobot

    08/02/2020, 2:52 PM
    i see ok cool
  • r

    runlevelrobot

    08/02/2020, 2:52 PM
    thanks
  • k

    Kiran

    08/03/2020, 4:11 AM
    I'm getting a "you cannot define a mapping item when in a sequence" when trying to define a schema and create a note. What would that mean?
  • k

    kevins8

    08/03/2020, 4:12 AM
    that means there's an issue with your yaml
  • k

    kevins8

    08/03/2020, 4:12 AM
    you can paste it in yaml lint: http://www.yamllint.com/
  • k

    Kiran

    08/03/2020, 4:13 AM
    oooh dang
  • k

    Kiran

    08/03/2020, 4:13 AM
    okay
  • u

    user

    08/03/2020, 7:32 AM
    Hello, I noticed the Github link under "Join Us" at https://www.dendron.so/ redirect to the Bootstrap repository instead of the Dendron’s one.
  • k

    kevins8

    08/03/2020, 1:11 PM
    @User opps, good catch. updated!
  • r

    runlevelrobot

    08/03/2020, 8:33 PM
    Hey Kevin could you send me your template for your projects too?
  • k

    kevins8

    08/03/2020, 8:34 PM
    https://github.com/dendronhq/dendron-template/blob/master/vault/pro.schema.yml
  • r

    runlevelrobot

    08/03/2020, 8:34 PM
    thx
  • b

    Buxel

    08/04/2020, 12:39 PM
    is there a recommended way of maintaining TODOs in dendron? i plan to use it for meeting notes and connect those to my projects. most of the time they contain various TODOs and i'd like to have an overview of all of them. I could just search for "TODO" but it would be nice if it was more integrated, e.g. being able to publish them as a list (to let my colleagues know my current tasks)
  • r

    runlevelrobot

    08/04/2020, 2:15 PM
    I am wanting to create a schema that matches on something like this: pro.work.python. I am able to get it to work with pro.work just not pro.work.python. What am I missing?
  • k

    kevins8

    08/04/2020, 4:03 PM
    @User hmm, what does your schema file look like? to get at what you wanted, i would do something like the following
    Copy code
    yml
    - id: pro
      desc: projects
      parent: root
      children:
        - work
        - personal
    - id: personal
      namespace: true
      children:
        - quickstart
        - concepts
        - tips
        - faq
        - upgrading
        - topic
        - install
    - id: work
      namespace: true
      children:
        - quickstart
        - concepts
        - tips
        - faq
        - upgrading
        - topic
        - install
    - id: quickstart
      desc: getting started with a project
    - id: concepts
      desc: basic concepts to do with the project
    - id: tips
    - id: faq
    - id: upgrading
    - id: install
    - id: topic
      desc: important areas of a project
      namespace: true
  • k

    kevins8

    08/04/2020, 4:14 PM
    @User yes - this has come up a bunch so making a video to showcase. will be up later today!
  • b

    Buxel

    08/04/2020, 4:15 PM
    Awesome! Thank you very much 🙂
12345...757Latest