Entry DocType

Like in a dictionary, encylopedia, or wikipedia, entries are one of the central document types to this template (besides index doctypes and post doctypes). They are atomic concepts and ideas that are meaningfully linked so as to understand how those concepts relate to one another.

The breadcrumb entry head are formed by the current entry’s position in the semantic tree. And entry links are built from both its position in the tree as well as the fore and back wikirefs.

Markdown 🐝

Entries will typically contain frontmatter, wiki attributes, and markdown text respectively (without the backslash escape chars \):

---
frontmatter: attributes
---

attrtype::[\[concept]]

Then follows the rest of the text for the document, 
some of which might contain some more [\[wikirefs]].

Config 🐝

There are some entry configs that the creator may set:

bonsai:
  entries:
    backlinks: false
    root_path: "_entries/root.md"
    toggles:  # may be 'open' or 'closed'
      breadcrumb: "open"
      attr_box: "open"
      foot_links: "open"
      foot_tagged: "open"

backlinks: Once enough links and attributes have been accumulated, it might be desirable to try turning off backlinks to cleanup the entry’s footer. (This is more likely happen if you’re using the jekyll-wikirefs attributes and block-level wikilinks)

root_path refers to which document should act as the root of the semantic tree (and the tree graph graph).

toggles: refer to the entry head and entry links which may be toggled open or closed.