From 976fe57c3ce6691a78d41af0329840a5bf3ce0e8 Mon Sep 17 00:00:00 2001 From: Archbee Date: Wed, 29 Apr 2026 12:40:47 +0000 Subject: [PATCH] Archbee draft docs --- blocks/changelogs.mdx | 2 +- blocks/expandable-headings.mdx | 74 +++++++-------- blocks/lists.mdx | 6 +- blocks/tables.mdx | 159 +++++++++++++++++++++++---------- 4 files changed, 153 insertions(+), 88 deletions(-) diff --git a/blocks/changelogs.mdx b/blocks/changelogs.mdx index 5c636a3..3d01dd4 100644 --- a/blocks/changelogs.mdx +++ b/blocks/changelogs.mdx @@ -3,7 +3,7 @@ title: Changelog icon: {"lucideIcon":"Clock"} docTags: changelog createdAt: Wed Apr 29 2026 10:25:59 GMT+0300 (Eastern European Summer Time) -updatedAt: Wed Apr 29 2026 10:57:48 GMT+0300 (Eastern European Summer Time) +updatedAt: Wed Apr 29 2026 11:10:52 GMT+0300 (Eastern European Summer Time) --- Changelog blocks display release notes with categorized items. diff --git a/blocks/expandable-headings.mdx b/blocks/expandable-headings.mdx index 9cae239..e7db5cc 100644 --- a/blocks/expandable-headings.mdx +++ b/blocks/expandable-headings.mdx @@ -1,73 +1,67 @@ --- title: Expandable Sections -icon: chevrons-down +icon: {"lucideIcon":"ChevronsDown"} +docTags: +createdAt: Wed Apr 29 2026 10:25:59 GMT+0300 (Eastern European Summer Time) +updatedAt: Wed Apr 29 2026 15:25:00 GMT+0300 (Eastern European Summer Time) --- Expandable headings let users collapse and expand content sections — ideal for FAQs, long reference docs, or optional details. + ## What is Archbee CLI? -## What is Archbee CLI? - -Archbee CLI is a command-line tool for previewing, validating, and managing your documentation locally. It renders your Markdown/MDX files with the same templates used on the Archbee platform. - + Archbee CLI is a command-line tool for previewing, validating, and managing your documentation locally. It renders your Markdown/MDX files with the same templates used on the Archbee platform. + ## How do I install it? -## How do I install it? - -```bash -npm install -g @archbee/cli -``` - -Requires Node.js 18 or higher. LTS versions recommended. + ```bash + npm install -g @archbee/cli + ``` + Requires Node.js 18 or higher. LTS versions recommended. + ## Can I use it with Docusaurus? -## Can I use it with Docusaurus? - -Yes — run `archbee dev` in any Docusaurus project. The CLI auto-detects `docusaurus.config.js` or `.ts` and renders it with Archbee templates. Blog, multi-instance docs, and custom CSS are all supported. - + Yes — run `archbee dev` in any Docusaurus project. The CLI auto-detects `docusaurus.config.js` or `.ts` and renders it with Archbee templates. Blog, multi-instance docs, and custom CSS are all supported. + ## What templates are available? -## What templates are available? - -Four built-in templates: - -- **Stripe** — Clean, modern layout (default) -- **ColorNav** — Colored navigation sidebar -- **Windy** — Minimal, spacious design -- **Booklet** — All docs on one page + Four built-in templates: + - **Stripe** — Clean, modern layout (default) + - **ColorNav** — Colored navigation sidebar + - **Windy** — Minimal, spacious design + - **Booklet** — All docs on one page ## Syntax + MDX -MDX - -```html - -## Your Heading - -Content that will be collapsible. - -``` + ```html + + ## Your Heading -Markdown + Content that will be collapsible. + + ``` -```markdown -:::::ExpandableHeading -## Your Heading + Markdown -Content that will be collapsible. -::::: -``` + ```markdown + :::::ExpandableHeading + ## Your Heading + Content that will be collapsible. + ::::: + ``` + diff --git a/blocks/lists.mdx b/blocks/lists.mdx index fd158d2..c883fcb 100644 --- a/blocks/lists.mdx +++ b/blocks/lists.mdx @@ -1,6 +1,9 @@ --- title: Lists -icon: list +icon: {"lucideIcon":"List"} +docTags: +createdAt: Wed Apr 29 2026 10:25:59 GMT+0300 (Eastern European Summer Time) +updatedAt: Wed Apr 29 2026 15:25:08 GMT+0300 (Eastern European Summer Time) --- Standard Markdown lists for organizing content. Supports unordered, ordered, and checklist items. @@ -41,3 +44,4 @@ Standard Markdown lists for organizing content. Supports unordered, ordered, and - [ ] Unchecked task - [x] Completed task ``` + diff --git a/blocks/tables.mdx b/blocks/tables.mdx index 08f8f56..136e977 100644 --- a/blocks/tables.mdx +++ b/blocks/tables.mdx @@ -1,64 +1,133 @@ --- title: Tables -icon: table +icon: {"lucideIcon":"Table"} +docTags: +createdAt: Wed Apr 29 2026 10:25:59 GMT+0300 (Eastern European Summer Time) +updatedAt: Wed Apr 29 2026 15:25:04 GMT+0300 (Eastern European Summer Time) --- Tables organize structured data in rows and columns. Use standard Markdown tables or HTML tables with colored cells. ## Markdown Table -| Feature | Free | Pro | Enterprise | -|---------|------|-----|------------| -| Spaces | 3 | 20 | Unlimited | -| API Access | - | Yes | Yes | -| Custom Domain | - | - | Yes | -| SSO/SAML | - | - | Yes | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Feature + + Free + + Pro + + Enterprise +
+ Spaces + + 3 + + 20 + + Unlimited +
+ API Access + + \- + + Yes + + Yes +
+ Custom Domain + + \- + + \- + + Yes +
+ SSO/SAML + + \- + + \- + + Yes +
## HTML Table with Colors - - - - - -
-

Service

+
+ **Service** -

Status

+
+ **Status** -

Uptime

+
+ **Uptime**
-

API

+ API
-

Operational

+
+ Operational -

99.99%

+ 99.99%
-

CDN

+ CDN
-

Operational

+
+ Operational -

99.98%

+ 99.98%
-

Search

+ Search
-

Degraded

+
+ Degraded -

99.2%

+ 99.2%
@@ -66,30 +135,28 @@ Tables organize structured data in rows and columns. Use standard Markdown table ## Syntax + MDX -MDX - -```html - - - - - - - - - -

Name

Value

Item

123

-``` - -Markdown + ```html + + + + + + + + + +

Name

Value

Item

123

+ ``` -```markdown -| Column 1 | Column 2 | -|----------|----------| -| Cell 1 | Cell 2 | -``` + Markdown + ```markdown + | Column 1 | Column 2 | + |----------|----------| + | Cell 1 | Cell 2 | + ```
HTML table attributes: `isTableHeaderOn`, `columnWidths`, `lightBackgroundColor`, `darkBackgroundColor`, `align`, `colSpan`, `rowSpan`.