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

    kevins8

    09/19/2020, 5:04 PM
    if you want images to show up, you need to create a user github page
  • k

    kevins8

    09/19/2020, 5:04 PM
    until i push out the fix
  • k

    kevins8

    09/19/2020, 5:04 PM
    https://pages.github.com/
  • k

    kevins8

    09/19/2020, 5:04 PM
    otherwise, github page will be published under a subdomain
  • k

    kevins8

    09/19/2020, 5:05 PM
    https://jackqaq-byte.github.io/my-second-brain/ vs https://jackqaq-byte.github.io
  • i

    imalightbulb

    09/19/2020, 5:06 PM
    so the image will only show without the subdomain?
  • k

    kevins8

    09/19/2020, 5:07 PM
    until i push out the fix 😅
  • i

    imalightbulb

    09/19/2020, 5:07 PM
    ahh no prob
  • i

    imalightbulb

    09/19/2020, 5:07 PM
    🐛 found
  • k

    kevins8

    09/19/2020, 5:08 PM
    🐛 🔨
  • i

    imalightbulb

    09/19/2020, 5:50 PM
    @User What's the difference between
    Create Daily Journal Note
    and
    Create Journal Note
    ?
  • k

    kevins8

    09/19/2020, 8:20 PM
    https:/dendron.so/notes/5c213aa6-e4ba-49e8-85c5-1bdcb33ce202.html
  • k

    kevins8

    09/20/2020, 3:31 AM
    @User so while looking into publishing, I realized that we already have an option to fix this. just forgot to document it 😅 https:/dendron.so/notes/ffa6a4ba-5eda-48c7-add5-8e2333ba27b4.html#assetsprefix-str
  • k

    kevins8

    09/20/2020, 3:31 AM
    you will want to edit your dendorn.yml file
    Copy code
    site:
        siteHierarchies: [n, b, prod, c, prog, sci, his]
        siteRootDir: docs
        usePrettyRefs: true
        assetsPrefix: "my-second-brain"  # <-- add this
        config:
          n:
            PublishByDefault: false
          b:
            PublishByDefault: false
          prod:
            PublishByDefault: false
          prog:
            PublishByDefault: false
          sci:
            PublishByDefault: false
          his:
            PublishByDefault: false
  • i

    imalightbulb

    09/20/2020, 3:32 AM
    ahh
  • i

    imalightbulb

    09/20/2020, 3:32 AM
    that's great
  • i

    imalightbulb

    09/20/2020, 3:33 AM
    so the
    my-second-brain
    is the directory name or the repo name?
  • k

    kevins8

    09/20/2020, 3:34 AM
    the repo name
  • i

    imalightbulb

    09/20/2020, 3:38 AM
    Is this schema correct?
  • i

    imalightbulb

    09/20/2020, 3:38 AM
    Because the template doesn't work
  • k

    kevins8

    09/20/2020, 3:39 AM
    it looks right
  • i

    imalightbulb

    09/20/2020, 3:39 AM
    hmm i do have the file
    journal.template.day
    , and I reloaded index
  • i

    imalightbulb

    09/20/2020, 3:40 AM
    So the whole journal schema looks like this
  • i

    imalightbulb

    09/20/2020, 3:41 AM
    it should be including the content the content in the schema for the new created file
    journal.2020.09.20
  • k

    kevins8

    09/20/2020, 3:51 AM
    since its a namepspace, i think this applies to journal.2020.09.20.{blah}
  • i

    imalightbulb

    09/20/2020, 3:51 AM
    let me try to remove the
    namespace
    then
  • i

    imalightbulb

    09/20/2020, 3:54 AM
    not working 😢
  • k

    kevins8

    09/20/2020, 3:55 AM
    can you paste the schema here
  • i

    imalightbulb

    09/20/2020, 3:56 AM
    - id: journal title: journal desc: "" parent: root children: - year - id: year children: - month - id: month title: month pattern: "[0-9][0-9]" children: - day - id: day title: day pattern: "[0-9][0-9]" template: id: journal.template.day type: note
  • k

    kevins8

    09/20/2020, 3:58 AM
    Copy code
    - id: journal
      title: journal
      desc: ""
      parent: root
      children:
        - year
    - id: year
      pattern: "[0-9][0-9][0-9][0-9]"
      children: 
        - month
    - id: month
      title: month
      pattern: "[0-9][0-9]"
      children: 
        - day
    - id: day
      title: day
      pattern: "[0-9][0-9]"
      template: 
        id: journal.template.day
        type: note
1...717273...757Latest