I have a hierarchy tree in a vault named as `vault...
# questions
a
I have a hierarchy tree in a vault named as
vault-name
as follows
Copy code
yaml
- root
    - blog
    - notes
        - public
        - private1
        - private2
I would like to publish all, except the two
private1
and
private2
nested hierarchy nodes. Here is my first attempt with
dendron.yml
, but it does not work, since everything is published
Copy code
yaml
publishing:
    siteHierarchies:
        - root
        - blog
        - notes
        - private1
        - private2
    hierarchy:
        private1:
            publishByDefault:
                vault-name: false
What is the current config to achieve my publishing target?