```mermaid
erDiagram
CUSTOMER {
int id PK
string name
string email
string phone
}
ORDER {
int id PK
date order_date
int customer_id FK
float total_amount
}
ORDER_ITEM {
int id PK
int order_id FK
int product_id FK
int quantity
float unit_price
}
PRODUCT {
int id PK
string name
float price
int category_id FK
}
CATEGORY {
int id PK
string name
string description
}
SUPPLIER {
int id PK
string name
string contact_email
}
PRODUCT_SUPPLIER {
int product_id FK
int supplier_id FK
}
Relationships
CUSTOMER ||--o{ ORDER : "places"
ORDER ||--|{ ORDER_ITEM : "contains"
PRODUCT ||--o{ ORDER_ITEM : "is included in"
CATEGORY ||--|{ PRODUCT : "includes"
PRODUCT ||--o{ PRODUCT_SUPPLIER : "supplied by"
SUPPLIER ||--o{ PRODUCT_SUPPLIER : "supplies"
Kanban Boards
pretty sure you need a plugin for this
```kanban # To Do - Task 1 - Task 2 # In Progress - Task 3 # Done - Task 4 ```
Table of Contents
pretty sure you need a plugin for this
[[toc]]
Templates
```template Name: Date: ```
These features are specific to Obsidian and may not be supported or have the same syntax in other Markdown editors. Make sure to check Obsidianās documentation for any updates or additional features.
Search Queries
```querytag:#documentation OR tag:#article OR tag:#tutorial ```
tag:#documentation OR tag:#article OR tag:#tutorial
Quartz hosting
headers
When using Headers, only the following show up in your sidebar Table of Contents menu:
# Biggest header## medium header### smaller header
If you add more #ās, they wonāt be shown in the table of contents.
And I think only the medium and smaller headers are clickable.
Tags
The example below is only for mentioning tags in your documents. It wonāt make your document show up when filtering on the tags.