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

    Dat

    02/10/2022, 1:27 PM
    That's a very sensible solution, thank you. I will try to work on that and see if it fits
  • a

    aleksey

    02/10/2022, 2:32 PM
    No worries, it's all good. 👍
  • r

    rrf

    02/10/2022, 4:38 PM
    Is there a way to include custom html (concretely to change the head section) in markdown preview?
  • g

    grndstt

    02/10/2022, 7:12 PM
    Hi dendrologues ! I did a vault remove / vault add operation (because I changed the remote github repo name). I apparently messed upd somewhere and here is the error message of my github action
  • g

    grndstt

    02/10/2022, 7:12 PM
    Copy code
    Run cd .next && yarn export && cd ..
    yarn run v1.22.17
    $ next build && next export
    info  - Checking validity of types...
    warn  - No ESLint configuration detected. Run next lint to begin setup
    info  - Creating an optimized production build...
    info  - Compiled successfully
    info  - Collecting page data...
    
    > Build error occurred
    TypeError: Cannot read properties of undefined (reading 'id')
        at /home/runner/work/dendron-global/dendron-global/.next/.next/server/chunks/884.js:457:152
        at /home/runner/work/dendron-global/dendron-global/.next/node_modules/lodash/lodash.js:10661:37
        at arrayFilter (/home/runner/work/dendron-global/dendron-global/.next/node_modules/lodash/lodash.js:596:11)
        at Function.reject (/home/runner/work/dendron-global/dendron-global/.next/node_modules/lodash/lodash.js:9817:14)
        at getNotePaths (/home/runner/work/dendron-global/dendron-global/.next/.next/server/chunks/884.js:457:63)
        at buildStaticPaths (/home/runner/work/dendron-global/dendron-global/.next/node_modules/next/dist/build/utils.js:498:37)
        at /home/runner/work/dendron-global/dendron-global/.next/node_modules/next/dist/build/utils.js:641:125
        at processTicksAndRejections (node:internal/process/task_queues:96:5)
        at async Span.traceAsyncFn (/home/runner/work/dendron-global/dendron-global/.next/node_modules/next/dist/trace/trace.js:75:20) {
      type: 'TypeError'
    }
    error Command failed with exit code 1.
    info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
    Error: Process completed with exit code 1.
  • g

    grndstt

    02/10/2022, 7:13 PM
    This happens at the Prep Notes for Publish stage. Any directions you could indicate me to start debugging this ?
  • s

    SeriousBug

    02/10/2022, 7:24 PM
    You should make sure that the vaults are correct in your
    dendron.yml
    file. Make sure there aren't any vaults that you deleted, and that all of them have correct `fsPath`s. I'm happy to take a look over it if you can't see something wrong.
  • x

    Xanaus

    02/11/2022, 3:06 AM
    Is it possible to use obsidian vault in here?
  • b

    benhsm | Jack of N trades

    02/11/2022, 5:30 AM
    Obsidian vaults have subfolders, but Dendron vaults do not (see: ). For this reason, it's more typical for people dual-wielding Obsidian and Dendron to have a Dendron vault as a subfolder in an Obsidian vault.
  • c

    Chingyi

    02/11/2022, 7:11 AM
    Hi everyone, just tried out dendron yesterday, and I have a question if it supports reference-style link for notes https://www.markdownguide.org/basic-syntax/#reference-style-links I want to place the whole link in the footnote instead of typing the note link every time instead of writing this below line every time
    Copy code
    [[mash potato|recipe.vege.mash-potato]]
    I could use
    mash-potato-tag
    as alias. Similar to original markdown syntax, define the link in the footnote
    Copy code
    [mash potato][mash-potato-tag]
    ======
    [mash-potato-tag]: [[recipe.vege.mash-potato]]
    Or would you have any better tip for this usage? Thanks very much
  • s

    SeriousBug

    02/11/2022, 7:43 AM
    No, Dendron doesn't have any support for that. If it helps, you don't have to manually write the wikilink. There is autocomplete, and these's the "Dendron: Insert Note Link" and "Dendron: Copy Note Link" commands which generate the link for you. There is support for footnotes
    ([^books]: here is my [[books]])
    , but that's not the same of course.
  • d

    DarkZelus

    02/11/2022, 11:56 AM
    Hi all Anyone having issues with toggling checkboxes in the note preview on windows? On my system they are greyed out and "read only". Thanks
  • j

    johndendron29

    02/11/2022, 2:13 PM
    This is an outstanding issue which you can upvote here: https://github.com/dendronhq/dendron/issues/1571. We are focusing on general stability of preview V2, and once this is done we are planning to port it into V2.
  • d

    DarkZelus

    02/11/2022, 3:24 PM
    Great! Thanks and upvoted 🙂
  • u

    user

    02/11/2022, 7:32 PM
    Hey all, I'm new to Dendron and want to get into it more, but there's a problem. With the extension enabled, I can no longer use prettier - specifically on large json files. Any thoughts on this?
  • s

    SeriousBug

    02/11/2022, 8:37 PM
    Dendron shouldn't affect that, but there could be some sort of conflict. What do you mean by "can't use it", is it too slow? Does it not work at all?
  • u

    user

    02/11/2022, 8:37 PM
    Does not work at all. Once I disable Dendron, things are back to normal
    s
    k
    • 2
    • 6
  • u

    user

    02/11/2022, 8:50 PM
    Is there a way to make a link to a audio file in Dendron? I've tried something like this
    [link-name](../../path/to/audio/file.mp3)
    but suffice it to say that it doesn't work. Is there another method?
  • s

    SeriousBug

    02/11/2022, 8:56 PM
    [link-name](/assets/audio/file.mp3)
    should work if you put the file inside the assets folder in the vault
  • u

    user

    02/11/2022, 9:29 PM
    Just gave that a go with the path
    [music-link](/notes/music/Peaceful/music-file.mp3)
    and it's not embedding properly, Just displaying as plain text in the note preview.
  • u

    user

    02/11/2022, 9:29 PM
    Do I need an 'assets' folder to make this work?
  • u

    user

    02/11/2022, 9:30 PM
    and if so does that need to be in my vault directory or in the workspace directory?
  • m

    michaelvolk

    02/11/2022, 10:02 PM
    Anyone know how to copy image to clipboard from viewing the VsCode file explorer? I thought there would be a VsCode extension for this, but I haven't found one.
  • k

    kevins8

    02/12/2022, 1:39 AM
    see https://wiki.dendron.so/notes/p5fMTi-6zOyX1TwhL6dM0/
  • k

    kevins8

    02/12/2022, 1:52 AM
    dendron’s focus is to help you organize and structure your notes so you can better make use of them. for example, you can create schemas to document and enforce your hierarchies and the refactor command to change your hierarchies
  • u

    user

    02/12/2022, 2:52 AM
    While running
    dendron publish export
    got an error
    value.replace is not a function
    . I'm not able to figure out how to debug and fix any issue; How to go about debugging? (for context: I did a massive refactoring of hierarchy)
  • c

    codemuncher

    02/12/2022, 6:22 AM
    can anyone xplain how dot hierarchy of dendron is far superior? i read the dendron wiki but still confuse
  • c

    codemuncher

    02/12/2022, 6:22 AM
    also does dendron have encryption and sync
  • s

    SeriousBug

    02/12/2022, 6:46 AM
    No encryption in Dendron, but we have sync through git. So you can use Github, Gitlab, or any other git provider to sync. You can also use keybase encrypted git if you want encryption for your notes, I think some people had success with that.
  • s

    SeriousBug

    02/12/2022, 6:49 AM
    Organizing your notes into a hierarchy makes finding your note later easier. Many note taking programs make it very easy to write new notes, but difficult to find notes you wrote before. Hierarchies help with that. Dendron uses dots instead of folders for the hierarchy, this is more flexible than folders because you can just rename files instead of creating and deleting folders.
1...543544545...757Latest