Skip to content

Latest commit

 

History

History
83 lines (69 loc) · 2.01 KB

md.md

File metadata and controls

83 lines (69 loc) · 2.01 KB

Markdown syntax

  • formatting can be used to enhance the text further:

  • Use # for headings, ## for subheadings, and ### for sub-subheadings.

  • Employ **text** for bold formatting and *text* for italic formatting. _footnote: Here's a simple footnote,1 and here's a longer one.2

_tables:

First Header Second Header
first column(n) second column(n)
n+1 first column n+2 second column

_list:

  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

_blockquote:

quote text

_inlinecode: code in backticks can be embedded in-line

Return:, Commands: + args, flags & IO

_codeblock: should be fenced with backticks

import os
print(sys.path)
entities:
  - name: user
    type: entity
    attributes:
      - name
      - role
      - perspective: $mind_map_user

  - name: $mind_map_user
    type: $mind_map
    attributes:
      - elements:
          - thoughts
          - knowledge
          - intentions
      - edges:
          - from: thoughts
            to: knowledge
          - from: knowledge
            to: intentions

  - name: $mind_map_bot
    type: $mind_map
    attributes:
      - elements:
          - understanding
          - responses
          - context
      - edges:
          - from: understanding
            to: responses
          - from: responses
            to: context

In this YAML representation:

  • entities is the main list containing definitions for each entity.
  • Each entity definition includes a name and type field, representing the entity's name and type.
  • The attributes field contains a list of attributes associated with the entity.
  • For entities that are mind maps, the elements field lists the elements within the mind map, and the edges field describes the relationships between those elements.

Footnotes

  1. meaningful #1!

  2. Here's one with multiple paragraphs and code. Indent paragraphs to include them in the footnote. { my code } Add as many paragraphs as you like.