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

    ichimga

    04/22/2022, 5:24 PM
    Hi there. I'm getting this error (see below) when running
    npx dendron publish dev
    . If a run the publish command on a new Dendron workspace, it works fine. So I believe there must be something in the content of my .md files or in the title of a file that gives back this error. Any hints on how I could find what the file in question is? What should I look for? I have too many files to look into each one by one and I'm not sure what I'm looking for. Thanks! See error here https://matemates.com/zerobin/?39eea7f7a6584c85#8d1FvBS7i3YAcJeV3wDB6sqb5XJ2GRKxbZcLWbuSTcuw
  • k

    kevins8

    04/22/2022, 5:54 PM
    set vault [visibility](https://wiki.dendron.so/notes/o55qc0bc18ykz7qrhxvapbq) to private and you should be good to go
  • k

    kevins8

    04/22/2022, 5:57 PM
    a common cause is that the frontmatter title is a number instead of a string. can you see if you have any frontmatter that are in the form of
    title: {number}
    ? also - what version of dendron are you running?
    i
    s
    • 3
    • 16
  • i

    ichimga

    04/22/2022, 7:25 PM
    a common cause is that the frontmatter
  • h

    HeyyyyJinn

    04/22/2022, 11:27 PM
    It is possible to increase the font for the Dendron preview?
  • b

    bradw

    04/22/2022, 11:30 PM
    Hi can I get some help with global macros and Latex, please?
  • k

    kevins8

    04/22/2022, 11:45 PM
    not without scaling your general display settings. you can scale up font of the editor
  • k

    kevins8

    04/22/2022, 11:45 PM
    global macros are currently not supported for latex
  • b

    bradw

    04/23/2022, 12:16 AM
    Are they planned for some future version of Dendron?
  • s

    Sylvan

    04/24/2022, 4:33 AM
    Hi, For some reason, the images on some of my vaults aren't displaying VS Code: Version: 1.66.1 Dendron: v0.91.0
  • s

    SeriousBug

    04/24/2022, 4:35 AM
    Which OS? Is it Windows? And could you share more about which images? Is it images with certain characters in the URLs, or local images only etc.?
  • s

    Sylvan

    04/24/2022, 4:36 AM
    Here is a screenshot. Sorry for my English is not my native language.
  • s

    Sylvan

    04/24/2022, 4:36 AM
    Windows 11. Local images only
  • r

    rioka

    04/24/2022, 11:49 AM
    Hi I've had a look at dendron a few months ago, and now I'm back trying to play a little bit more seriously with it. I was trying to get this setup - a workspace - 2+ vaults, all backed by a single git (remote) repository I tried to get something like this, but I cannot find a way to do that, so wondering if - this is a supported scenario - or maybe it is simply conflicting with dendron approach, as dendron (IIUC) enforce hierarchies using dots in filenames Or maybe it is something that cannot be done using built-in command, but it can be done manually? Thanks
  • k

    kevins8

    04/24/2022, 4:17 PM
    this is supported - the workflow involves a few extra steps at the moment. see credit to @ccamara for posting workflow note that we'll start rolling out [Self Contained Vaults](https://wiki.dendron.so/notes/o4i7a81j778jyh7wql0nacb) over the next few weeks which will make this process much simpler (remove concept of workspace, vaults can hold other vaults)
  • x

    xyz

    04/24/2022, 4:32 PM
    Hi. When I paste an image, the link is automatically created and the image file is saved in the assets folder. What if I later want to remove the link and the related image? Do I need to find the image manually and remove it from assets folder? Or is a there a way to automatically remove the image when no active links exist to that image?
  • g

    gravelcrab

    04/24/2022, 5:47 PM
    Hello. For images that are pasted using
    Paste Image
    , what's the best way to caption those images (i.e., text below the image that describes the image). Currently, I'm just putting an italicized description on the next line immediately below the image. But this doesn't always render properly in all markdown viewers (e.g. in Gitlab, it shows the caption to the right of the image, instead of directly below it). I checked through the documentation and searched through previous chats and I'm not seeing an obvious solution. Thanks!
  • r

    RenStrike

    04/24/2022, 8:38 PM
    When I preview my published site it looks exactly as I'd expect. When I publish it all the .html pages just look like this, 😐 Any ideas? Thanks in advance!
  • s

    SeriousBug

    04/24/2022, 8:41 PM
    You can't view published Dendron sites with
    file://C:...
    . It should work when you put it on a server. You'll just want to make sure
    assetsPrefix
    is set correctly if it is published in a subfolder (like
    example.com/my-notes/
    ): https://wiki.dendron.so/notes/zvFzP2vGufKPBZJ2KvvfQ/
  • s

    SeriousBug

    04/24/2022, 8:43 PM
    I don't think there's an automatic way, you'll need to find and delete the file, then remove the links yourself. We do have plans to improve asset handling in the future which will make this easier. https://docs.dendron.so/notes/WCZ1LzhM07Om3KFPERk6l/
  • s

    SeriousBug

    04/24/2022, 8:48 PM
    I think the italicized description if the best option right now, but please feel free to send a feature request for this: https://github.com/dendronhq/dendron/issues/new/choose You can also try adding HTML into the note for this, although gitlab might block that:
    Copy code
    <figure>
    <img src="https://example.com/image.png">
    <figcaption style="font-style: italic">This is the caption.</figcaption>
    </figure>
  • r

    RenStrike

    04/24/2022, 8:55 PM
    I was wondering if that was the case. Thanks! The "preview" is really handy though. Is there any way to have a 'live' server like that, and skip all the "generating html files and publishing" stuff? 🙂 (Sorry if these are dumb questions. I'm new, lol)
  • s

    SeriousBug

    04/24/2022, 9:07 PM
    Yup! You can do
    dendron publish dev
    to get a preview. It doesn't automatically update every time you change a note though, that's not implemented yet. https://wiki.dendron.so/notes/e5st4LFLtIwwbQmC6JBaF/#preview
  • r

    RenStrike

    04/25/2022, 1:59 AM
    I have my Dendron project connected to git, and can push changes, but i'm having trouble cloning it correctly on another machine. Dendron seems to only let me Initialize/Change Worldspaces. How do I clone the repo and work with it as a Dendron Workspace?
  • s

    SeriousBug

    04/25/2022, 2:01 AM
    You have two options: 1. If you have the entire workspace in the repository, including the
    dendron.yml
    and
    dendron.code-workspace
    files, then you can open the workspace file and press the open workspace button. It should work then. 2. You can initialize a new workspace, then use the "Vault Add" command in it. When prompted pick "remote", then paste the clone url for your vault.
  • d

    dvy

    04/25/2022, 8:10 AM
    Hi everyone I'm trying to set up a template for my daily journal. Do I need to do anything aside from what's Kevin showed in this demo https://www.loom.com/share/481b7ab051394c1caa383383bd265755? It doesn't work for me now.
  • g

    grndstt

    04/25/2022, 8:52 AM
    I understand that schemas are applied across vaults. Is it still possible to define a scope for a schema to be applied ?
  • g

    grndstt

    04/25/2022, 8:53 AM
    I have a multivault setup and would like to apply different daily journal templates according to the vault were I create my daily note
  • g

    grndstt

    04/25/2022, 8:54 AM
    Following this https://wiki.dendron.so/notes/5U4eAiqshI67VxIL40KWH/ tuto I am able to have a template for the daily notes however I could not figure how to use a second template on daily notes ...
  • g

    grndstt

    04/25/2022, 8:55 AM
    Any idea on how to do this ?
1...616617618...757Latest