I have a vault named `public`. With the hierarchy ...
# questions
a
I have a vault named
public
. With the hierarchy
parent.child.grand-child.*
. Now I want to set private (or not published) the hierarchy starting from
grand-child
This is how I config in
dendron.yml
Copy code
siteHierarchies:
        - root
        - parent
        - child
        - grand-child
    hierarchy:
        grand-child:
            publishByDefault:
                public: false
However the hierarchy starting from
grand-child
is still being published online. Please teach me why, or how to achieve my purpose?