I have a hierarchy tree as follows ```yaml - root ...
# questions
a
I have a hierarchy tree as follows
Copy code
yaml
- root
    - blog
    - notes
        - public
        - private1
        - private2
What is the most easy to organize config, to publish all except the two
private1
and
private2
nested hierarchy nodes? If I config like below, will it work?
Copy code
yaml
publishing:
    siteHierarchies:
        - root
        - blog
        - notes
        - private1
        - private2
    hierarchy:
        private1:
            publishByDefault:
                vault-name: false