@knowcode/doc-builder 1.5.14 → 1.5.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/README.md +264 -188
- package/assets/css/notion-style.css +32 -8
- package/assets/js/main.js +0 -18
- package/html/README.html +205 -91
- package/html/css/notion-style.css +32 -8
- package/html/documentation-index.html +3 -3
- package/html/guides/authentication-guide.html +3 -3
- package/html/guides/claude-workflow-guide.html +3 -3
- package/html/guides/documentation-standards.html +3 -3
- package/html/guides/google-site-verification-guide.html +3 -3
- package/html/guides/phosphor-icons-guide.html +3 -3
- package/html/guides/seo-guide.html +3 -3
- package/html/guides/seo-optimization-guide.html +3 -3
- package/html/guides/troubleshooting-guide.html +3 -3
- package/html/index.html +205 -91
- package/html/sitemap.xml +16 -16
- package/html/vercel-cli-setup-guide.html +3 -3
- package/html/vercel-first-time-setup-guide.html +3 -3
- package/lib/core-builder.js +0 -1
- package/package.json +1 -1
- package/Screenshot 2025-07-21 at 11.52.33.png +0 -0
- package/Screenshot 2025-07-21 at 12.14.39.png +0 -0
- package/Screenshot 2025-07-21 at 17.13.17.png +0 -0
- package/Screenshot 2025-07-21 at 17.16.15.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,30 @@ All notable changes to @knowcode/doc-builder will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.5.16] - 2025-07-22
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Simplified Mermaid diagram display by removing unnecessary UI elements
|
|
12
|
+
- Removed "Copy to Mermaid" button from diagram toolbar
|
|
13
|
+
- Removed "Copy SVG" button from diagram toolbar
|
|
14
|
+
- Removed "Diagram" heading from Mermaid diagram wrapper
|
|
15
|
+
- Removed "Mermaid Diagram" text label from toolbar
|
|
16
|
+
|
|
17
|
+
### Improved
|
|
18
|
+
- Cleaner, less cluttered presentation of Mermaid diagrams
|
|
19
|
+
- Full Screen button remains available for better diagram viewing
|
|
20
|
+
|
|
21
|
+
## [1.5.15] - 2025-07-22
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
- Improved Phosphor icon vertical alignment using more aggressive CSS positioning
|
|
25
|
+
- Icons now use `vertical-align: text-top` with `top: 0.2em` offset for better x-height alignment
|
|
26
|
+
- Reduced line-height to 0.8 to prevent icons from affecting line spacing
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
- Enhanced icon CSS to ensure proper alignment across different text contexts
|
|
30
|
+
- Icons now properly align with the text baseline in all scenarios
|
|
31
|
+
|
|
8
32
|
## [1.5.14] - 2025-07-22
|
|
9
33
|
|
|
10
34
|
### Fixed
|
package/README.md
CHANGED
|
@@ -2,17 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
Beautiful documentation with the least effort possible. A zero-configuration documentation builder that transforms markdown files into stunning static sites.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<div align="center">
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
🔗 **[View Live Example](https://doc-builder-delta.vercel.app)** | 📦 **[NPM Package](https://www.npmjs.com/package/@knowcode/doc-builder)** | 📚 **[Documentation](https://doc-builder-delta.vercel.app)**
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
### Quick Start
|
|
10
|
+
```bash
|
|
10
11
|
npx @knowcode/doc-builder deploy
|
|
11
12
|
```
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
---
|
|
14
17
|
|
|
15
|
-
|
|
18
|
+
## 🎯 Core Value Proposition
|
|
19
|
+
|
|
20
|
+
| **Problem** | **Solution** |
|
|
21
|
+
|------------|-------------|
|
|
22
|
+
| Complex documentation setup | Zero configuration needed |
|
|
23
|
+
| Deployment headaches | One-command Vercel deployment |
|
|
24
|
+
| Expensive hosting | Free tier with Vercel |
|
|
25
|
+
| Ugly default themes | Beautiful Notion-inspired design |
|
|
26
|
+
| Manual navigation | Auto-generated from folder structure |
|
|
16
27
|
|
|
17
28
|
## What It Does
|
|
18
29
|
|
|
@@ -38,51 +49,76 @@ We chose Vercel as our deployment platform because of their **generous free tier
|
|
|
38
49
|
|
|
39
50
|
This aligns perfectly with our mission: beautiful documentation should be accessible to everyone, without worrying about hosting costs or complex server management.
|
|
40
51
|
|
|
41
|
-
## Features
|
|
52
|
+
## ✨ Features
|
|
53
|
+
|
|
54
|
+
<table>
|
|
55
|
+
<tr>
|
|
56
|
+
<td width="50%">
|
|
57
|
+
|
|
58
|
+
### 🛠️ Core Features
|
|
59
|
+
- 🚀 **Zero Configuration** - Works out of the box
|
|
60
|
+
- 📝 **Markdown Support** - Full GitHub Flavored Markdown
|
|
61
|
+
- 🎨 **Beautiful Theme** - Notion-inspired design
|
|
62
|
+
- 🔄 **Live Reload** - Hot reloading dev server
|
|
63
|
+
- 📦 **Self-Contained** - No setup required
|
|
64
|
+
- 🤖 **Claude Code Ready** - AI-optimized workflows
|
|
42
65
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
- 🎨 **Beautiful Default Theme** - Clean, responsive design inspired by Notion
|
|
46
|
-
- 🔐 **Optional Authentication** - Password-protect your documentation
|
|
47
|
-
- 📊 **Mermaid Diagrams** - Built-in support for diagrams and charts
|
|
48
|
-
- 🌙 **Dark Mode** - Automatic dark mode support
|
|
49
|
-
- 🔄 **Live Reload** - Development server with hot reloading
|
|
50
|
-
- ☁️ **Vercel Integration** - One-command deployment to Vercel
|
|
51
|
-
- 🔍 **SEO Optimized** - Meta tags, Open Graph, Twitter Cards, and structured data
|
|
52
|
-
- ✅ **Google Site Verification** - Easy Google Search Console verification with CLI command
|
|
53
|
-
- 📝 **Front Matter SEO** - Per-page titles, descriptions, and keywords with YAML front matter
|
|
54
|
-
- 🎯 **SEO Analysis** - Built-in `seo-check` command to optimize your content
|
|
55
|
-
- 📦 **Self-Contained** - No configuration or setup required
|
|
56
|
-
- 🤖 **Claude Code Ready** - Optimized for AI-generated documentation workflows
|
|
66
|
+
</td>
|
|
67
|
+
<td width="50%">
|
|
57
68
|
|
|
58
|
-
|
|
69
|
+
### 🎯 Advanced Features
|
|
70
|
+
- 🔍 **SEO Optimized** - Meta tags & structured data
|
|
71
|
+
- 🔐 **Authentication** - Password protection
|
|
72
|
+
- 📊 **Mermaid Diagrams** - Built-in diagram support
|
|
73
|
+
- 🌙 **Dark Mode** - Automatic theme switching
|
|
74
|
+
- ☁️ **Vercel Deploy** - One-command deployment
|
|
75
|
+
- ✅ **Google Verification** - Search Console ready
|
|
59
76
|
|
|
60
|
-
|
|
77
|
+
</td>
|
|
78
|
+
</tr>
|
|
79
|
+
</table>
|
|
61
80
|
|
|
81
|
+
## 🚀 Getting Started
|
|
82
|
+
|
|
83
|
+
<table>
|
|
84
|
+
<tr>
|
|
85
|
+
<td width="50%">
|
|
86
|
+
|
|
87
|
+
### Option 1: NPX (No Installation)
|
|
62
88
|
```bash
|
|
63
|
-
#
|
|
89
|
+
# Deploy to Vercel
|
|
64
90
|
npx @knowcode/doc-builder deploy
|
|
65
91
|
|
|
66
|
-
#
|
|
67
|
-
npx @knowcode/doc-builder build
|
|
68
|
-
npx @knowcode/doc-builder dev # Start development server
|
|
69
|
-
npx @knowcode/doc-builder # Show help (default behavior)
|
|
70
|
-
```
|
|
92
|
+
# Build static HTML
|
|
93
|
+
npx @knowcode/doc-builder build
|
|
71
94
|
|
|
72
|
-
|
|
95
|
+
# Development server
|
|
96
|
+
npx @knowcode/doc-builder dev
|
|
73
97
|
|
|
74
|
-
|
|
98
|
+
# Show help
|
|
99
|
+
npx @knowcode/doc-builder
|
|
100
|
+
```
|
|
101
|
+
*Perfect for trying it out!*
|
|
102
|
+
|
|
103
|
+
</td>
|
|
104
|
+
<td width="50%">
|
|
75
105
|
|
|
106
|
+
### Option 2: NPM Install
|
|
76
107
|
```bash
|
|
108
|
+
# Install as dev dependency
|
|
77
109
|
npm install --save-dev @knowcode/doc-builder
|
|
78
|
-
```
|
|
79
110
|
|
|
80
|
-
|
|
81
|
-
|
|
111
|
+
# Use shorter commands
|
|
112
|
+
doc-builder deploy
|
|
82
113
|
doc-builder build
|
|
83
114
|
doc-builder dev
|
|
84
|
-
doc-builder
|
|
115
|
+
doc-builder --help
|
|
85
116
|
```
|
|
117
|
+
*Better for regular use & offline access*
|
|
118
|
+
|
|
119
|
+
</td>
|
|
120
|
+
</tr>
|
|
121
|
+
</table>
|
|
86
122
|
|
|
87
123
|
## First-Time Vercel Deployment
|
|
88
124
|
|
|
@@ -137,132 +173,116 @@ module.exports = {
|
|
|
137
173
|
};
|
|
138
174
|
```
|
|
139
175
|
|
|
140
|
-
## Commands
|
|
176
|
+
## 📋 Commands Overview
|
|
141
177
|
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
# Set your custom production URL
|
|
146
|
-
npx @knowcode/doc-builder set-production-url doc-builder-delta.vercel.app
|
|
178
|
+
<table>
|
|
179
|
+
<tr>
|
|
180
|
+
<td width="50%">
|
|
147
181
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
182
|
+
### 🏗️ Core Commands
|
|
183
|
+
| Command | Purpose |
|
|
184
|
+
|---------|---------|
|
|
185
|
+
| `build` | Generate static HTML |
|
|
186
|
+
| `dev` | Start dev server |
|
|
187
|
+
| `deploy` | Deploy to Vercel |
|
|
188
|
+
| `init` | Initialize project |
|
|
151
189
|
|
|
152
|
-
|
|
190
|
+
### ⚙️ Config Commands
|
|
191
|
+
| Command | Purpose |
|
|
192
|
+
|---------|---------|
|
|
193
|
+
| `set-production-url` | Set custom URL |
|
|
194
|
+
| `reset-vercel` | Clear settings |
|
|
153
195
|
|
|
154
|
-
|
|
196
|
+
</td>
|
|
197
|
+
<td width="50%">
|
|
155
198
|
|
|
156
|
-
|
|
199
|
+
### 🔍 SEO Commands
|
|
200
|
+
| Command | Purpose |
|
|
201
|
+
|---------|---------|
|
|
202
|
+
| `seo-check` | Analyze SEO |
|
|
203
|
+
| `setup-seo` | Configure SEO |
|
|
204
|
+
| `google-verify` | Add verification |
|
|
157
205
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
npx @knowcode/doc-builder google-verify YOUR_VERIFICATION_CODE
|
|
161
|
-
|
|
162
|
-
# Example
|
|
163
|
-
npx @knowcode/doc-builder google-verify FtzcDTf5BQ9K5EfnGazQkgU2U4FiN3ITzM7gHwqUAqQ
|
|
164
|
-
```
|
|
206
|
+
### 📚 Documentation
|
|
207
|
+
All commands support `--help` for detailed options and examples.
|
|
165
208
|
|
|
166
|
-
|
|
209
|
+
</td>
|
|
210
|
+
</tr>
|
|
211
|
+
</table>
|
|
167
212
|
|
|
168
|
-
###
|
|
213
|
+
### 📌 Command Details
|
|
169
214
|
|
|
170
|
-
|
|
215
|
+
<details>
|
|
216
|
+
<summary><b>🏗️ build</b> - Generate static HTML files</summary>
|
|
171
217
|
|
|
172
|
-
```bash
|
|
173
|
-
# Check all pages for SEO issues
|
|
174
|
-
npx @knowcode/doc-builder seo-check
|
|
175
|
-
|
|
176
|
-
# Check a specific page
|
|
177
|
-
npx @knowcode/doc-builder seo-check docs/guide.md
|
|
178
|
-
|
|
179
|
-
# Future: Auto-fix common issues
|
|
180
|
-
npx @knowcode/doc-builder seo-check --fix
|
|
181
|
-
```
|
|
182
|
-
|
|
183
|
-
This command analyzes:
|
|
184
|
-
- Title length and optimization (50-60 characters)
|
|
185
|
-
- Meta descriptions (140-160 characters)
|
|
186
|
-
- Keywords usage and relevance
|
|
187
|
-
- Front matter SEO fields
|
|
188
|
-
- Content quality signals
|
|
189
|
-
|
|
190
|
-
See the [SEO Optimization Guide](docs/guides/seo-optimization-guide.md) for best practices.
|
|
191
|
-
|
|
192
|
-
### setup-seo
|
|
193
|
-
Interactive SEO configuration wizard:
|
|
194
|
-
```bash
|
|
195
|
-
# Configure all SEO settings
|
|
196
|
-
npx @knowcode/doc-builder setup-seo
|
|
197
|
-
```
|
|
198
|
-
|
|
199
|
-
This wizard helps you set up:
|
|
200
|
-
- Site URL and author information
|
|
201
|
-
- Social media meta tags (Open Graph, Twitter Cards)
|
|
202
|
-
- Structured data (JSON-LD)
|
|
203
|
-
- Automatic sitemap and robots.txt generation
|
|
204
|
-
|
|
205
|
-
See the [SEO Guide](docs/guides/seo-guide.md) for complete details.
|
|
206
|
-
|
|
207
|
-
### build (defaults will work just fine)
|
|
208
|
-
Build the documentation site to static HTML:
|
|
209
218
|
```bash
|
|
210
219
|
doc-builder build [options]
|
|
211
220
|
|
|
212
221
|
Options:
|
|
213
222
|
-c, --config <path> Path to config file (default: "doc-builder.config.js")
|
|
214
|
-
-i, --input <dir> Input directory
|
|
215
|
-
-o, --output <dir> Output directory
|
|
216
|
-
--preset <preset> Use a preset configuration
|
|
217
|
-
--
|
|
218
|
-
--no-
|
|
219
|
-
--no-changelog Disable automatic changelog generation
|
|
223
|
+
-i, --input <dir> Input directory (default: docs)
|
|
224
|
+
-o, --output <dir> Output directory (default: html)
|
|
225
|
+
--preset <preset> Use a preset configuration
|
|
226
|
+
--no-auth Disable authentication
|
|
227
|
+
--no-changelog Disable changelog generation
|
|
220
228
|
|
|
221
229
|
Examples:
|
|
222
|
-
doc-builder build
|
|
230
|
+
doc-builder build # Build with defaults
|
|
223
231
|
doc-builder build --input docs --output dist
|
|
224
|
-
doc-builder build --preset notion-inspired
|
|
225
|
-
doc-builder build --config my-config.js # Use custom config
|
|
232
|
+
doc-builder build --preset notion-inspired
|
|
226
233
|
```
|
|
234
|
+
</details>
|
|
235
|
+
|
|
236
|
+
<details>
|
|
237
|
+
<summary><b>☁️ deploy</b> - Deploy to Vercel</summary>
|
|
227
238
|
|
|
228
|
-
### deploy
|
|
229
|
-
Deploy documentation to Vercel (requires Vercel CLI):
|
|
230
239
|
```bash
|
|
231
240
|
doc-builder deploy [options]
|
|
232
241
|
|
|
233
242
|
Options:
|
|
234
|
-
-c, --config <path>
|
|
235
|
-
--no-prod
|
|
236
|
-
--force
|
|
237
|
-
--production-url <url>
|
|
243
|
+
-c, --config <path> Path to config file
|
|
244
|
+
--no-prod Deploy as preview
|
|
245
|
+
--force Force without confirmation
|
|
246
|
+
--production-url <url> Override production URL
|
|
238
247
|
|
|
239
248
|
Examples:
|
|
240
|
-
doc-builder deploy
|
|
241
|
-
doc-builder deploy --no-prod
|
|
242
|
-
doc-builder deploy --production-url my-docs.vercel.app
|
|
243
|
-
|
|
244
|
-
First-time setup:
|
|
245
|
-
The tool will guide you through:
|
|
246
|
-
1. Installing Vercel CLI (if needed)
|
|
247
|
-
2. Creating a new Vercel project
|
|
248
|
-
3. Configuring deployment settings
|
|
249
|
-
|
|
250
|
-
Important: After deployment, disable Vercel Authentication in project settings for public docs.
|
|
249
|
+
doc-builder deploy # Deploy to production
|
|
250
|
+
doc-builder deploy --no-prod # Deploy as preview
|
|
251
|
+
doc-builder deploy --production-url my-docs.vercel.app
|
|
251
252
|
```
|
|
253
|
+
</details>
|
|
254
|
+
|
|
255
|
+
<details>
|
|
256
|
+
<summary><b>🔍 seo-check</b> - Analyze SEO optimization</summary>
|
|
252
257
|
|
|
253
|
-
### init
|
|
254
|
-
Initialize doc-builder in your project:
|
|
255
258
|
```bash
|
|
256
|
-
doc-builder
|
|
259
|
+
doc-builder seo-check [file]
|
|
257
260
|
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
+
Analyzes:
|
|
262
|
+
• Title length (50-60 chars)
|
|
263
|
+
• Meta descriptions (140-160 chars)
|
|
264
|
+
• Keywords usage
|
|
265
|
+
• Front matter SEO fields
|
|
266
|
+
• Content quality signals
|
|
261
267
|
|
|
262
268
|
Examples:
|
|
263
|
-
doc-builder
|
|
264
|
-
doc-builder
|
|
269
|
+
doc-builder seo-check # Check all pages
|
|
270
|
+
doc-builder seo-check docs/guide.md # Check specific page
|
|
265
271
|
```
|
|
272
|
+
</details>
|
|
273
|
+
|
|
274
|
+
<details>
|
|
275
|
+
<summary><b>✅ google-verify</b> - Add Google verification</summary>
|
|
276
|
+
|
|
277
|
+
```bash
|
|
278
|
+
doc-builder google-verify <code>
|
|
279
|
+
|
|
280
|
+
Examples:
|
|
281
|
+
doc-builder google-verify YOUR_VERIFICATION_CODE
|
|
282
|
+
doc-builder google-verify FtzcDTf5BQ9K5EfnGazQkgU2U4FiN3ITzM7gHwqUAqQ
|
|
283
|
+
```
|
|
284
|
+
</details>
|
|
285
|
+
|
|
266
286
|
|
|
267
287
|
## Project Structure
|
|
268
288
|
|
|
@@ -322,107 +342,163 @@ When using Claude Code to generate documentation, it typically follows these pat
|
|
|
322
342
|
- **Review Generated Content**: Always review AI-generated documentation for accuracy
|
|
323
343
|
- **Maintain CLAUDE.md**: Keep project-specific instructions in a CLAUDE.md file for consistent documentation style
|
|
324
344
|
|
|
325
|
-
## Troubleshooting
|
|
345
|
+
## 🔧 Troubleshooting
|
|
346
|
+
|
|
347
|
+
<table>
|
|
348
|
+
<tr>
|
|
349
|
+
<td width="50%">
|
|
326
350
|
|
|
327
|
-
###
|
|
351
|
+
### 🐛 Common Issues
|
|
328
352
|
|
|
329
|
-
|
|
353
|
+
**"Command not found" error**
|
|
354
|
+
```bash
|
|
355
|
+
# Check Node.js version
|
|
356
|
+
node --version # Need 14+
|
|
357
|
+
|
|
358
|
+
# Use full package name
|
|
359
|
+
npx @knowcode/doc-builder
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
**"No markdown files found"**
|
|
363
|
+
- Docs in `docs/` folder?
|
|
364
|
+
- Files have `.md` extension?
|
|
365
|
+
- Try: `--input ./my-docs`
|
|
366
|
+
|
|
367
|
+
**Vercel deployment fails**
|
|
368
|
+
```bash
|
|
369
|
+
# Reset Vercel settings
|
|
370
|
+
npx @knowcode/doc-builder reset-vercel
|
|
371
|
+
|
|
372
|
+
# Install Vercel CLI
|
|
373
|
+
npm install -g vercel
|
|
374
|
+
```
|
|
375
|
+
|
|
376
|
+
</td>
|
|
377
|
+
<td width="50%">
|
|
378
|
+
|
|
379
|
+
### ⚠️ NPX Cache Issues
|
|
330
380
|
|
|
331
381
|
**Symptoms:**
|
|
332
|
-
-
|
|
333
|
-
- New features
|
|
334
|
-
-
|
|
382
|
+
- Old version runs despite update
|
|
383
|
+
- New features unavailable
|
|
384
|
+
- Wrong version number shown
|
|
335
385
|
|
|
336
|
-
**
|
|
386
|
+
**Solutions:**
|
|
337
387
|
```bash
|
|
338
|
-
# Clear
|
|
388
|
+
# Clear NPX cache
|
|
339
389
|
npx clear-npx-cache
|
|
340
390
|
|
|
341
|
-
# Force
|
|
391
|
+
# Force latest version
|
|
342
392
|
npx @knowcode/doc-builder@latest
|
|
343
393
|
|
|
344
|
-
#
|
|
345
|
-
npx @knowcode/doc-builder@1.
|
|
394
|
+
# Use specific version
|
|
395
|
+
npx @knowcode/doc-builder@1.5.14
|
|
346
396
|
```
|
|
347
397
|
|
|
348
398
|
**Prevention:**
|
|
349
|
-
- Always use `@latest`
|
|
350
|
-
- Clear cache
|
|
351
|
-
- Use `npm install` for projects
|
|
399
|
+
- Always use `@latest` for newest
|
|
400
|
+
- Clear cache when testing
|
|
401
|
+
- Use `npm install` for projects
|
|
352
402
|
|
|
353
|
-
|
|
403
|
+
</td>
|
|
404
|
+
</tr>
|
|
405
|
+
</table>
|
|
354
406
|
|
|
355
|
-
|
|
356
|
-
- Ensure Node.js 14+ is installed: `node --version`
|
|
357
|
-
- Try with full package name: `npx @knowcode/doc-builder`
|
|
407
|
+
### 🔗 Production URL Issues
|
|
358
408
|
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
- Ensure files have `.md` extension
|
|
362
|
-
- Use `--input` flag to specify a different directory
|
|
409
|
+
<details>
|
|
410
|
+
<summary>Wrong URL displayed after deployment?</summary>
|
|
363
411
|
|
|
364
|
-
**
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
While developing the doc-builder:
|
|
412
|
+
**Option 1: Config File**
|
|
413
|
+
```javascript
|
|
414
|
+
// doc-builder.config.js
|
|
415
|
+
module.exports = {
|
|
416
|
+
productionUrl: 'https://my-docs.vercel.app'
|
|
417
|
+
};
|
|
418
|
+
```
|
|
419
|
+
|
|
420
|
+
**Option 2: CLI Command**
|
|
421
|
+
```bash
|
|
422
|
+
npx @knowcode/doc-builder set-production-url my-docs.vercel.app
|
|
423
|
+
```
|
|
424
|
+
|
|
425
|
+
**Option 3: Deploy Override**
|
|
426
|
+
```bash
|
|
427
|
+
npx @knowcode/doc-builder deploy --production-url my-docs.vercel.app
|
|
428
|
+
```
|
|
429
|
+
</details>
|
|
430
|
+
|
|
431
|
+
## 🔗 Integration Options
|
|
432
|
+
|
|
433
|
+
<table>
|
|
434
|
+
<tr>
|
|
435
|
+
<td width="50%">
|
|
436
|
+
|
|
437
|
+
### Development Integration
|
|
438
|
+
|
|
439
|
+
**NPM Link (Local Dev)**
|
|
393
440
|
|
|
394
441
|
```bash
|
|
395
442
|
# In doc-builder directory
|
|
396
443
|
npm link
|
|
397
444
|
|
|
398
|
-
# In your
|
|
445
|
+
# In your project
|
|
399
446
|
npm link @knowcode/doc-builder
|
|
400
447
|
```
|
|
401
448
|
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
In your project's `package.json`:
|
|
449
|
+
**File Reference (Monorepos)**
|
|
405
450
|
|
|
406
451
|
```json
|
|
407
452
|
{
|
|
408
453
|
"devDependencies": {
|
|
409
|
-
"@knowcode/doc-builder":
|
|
454
|
+
"@knowcode/doc-builder":
|
|
455
|
+
"file:../path/to/doc-builder"
|
|
410
456
|
}
|
|
411
457
|
}
|
|
412
458
|
```
|
|
413
459
|
|
|
414
|
-
|
|
460
|
+
</td>
|
|
461
|
+
<td width="50%">
|
|
462
|
+
|
|
463
|
+
### Production Integration
|
|
464
|
+
|
|
465
|
+
**NPM Registry (Recommended)**
|
|
466
|
+
|
|
467
|
+
```json
|
|
468
|
+
{
|
|
469
|
+
"devDependencies": {
|
|
470
|
+
"@knowcode/doc-builder": "^1.5.14"
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
```
|
|
415
474
|
|
|
416
|
-
|
|
475
|
+
**Git Repository (Private)**
|
|
417
476
|
|
|
418
477
|
```json
|
|
419
478
|
{
|
|
420
479
|
"devDependencies": {
|
|
421
|
-
"@knowcode/doc-builder":
|
|
480
|
+
"@knowcode/doc-builder":
|
|
481
|
+
"git+https://github.com/knowcode/doc-builder.git"
|
|
422
482
|
}
|
|
423
483
|
}
|
|
424
484
|
```
|
|
425
485
|
|
|
426
|
-
|
|
486
|
+
</td>
|
|
487
|
+
</tr>
|
|
488
|
+
</table>
|
|
489
|
+
|
|
490
|
+
## 📄 License
|
|
491
|
+
|
|
492
|
+
MIT License - See [LICENSE](LICENSE) file for details
|
|
493
|
+
|
|
494
|
+
---
|
|
495
|
+
|
|
496
|
+
<div align="center">
|
|
497
|
+
|
|
498
|
+
### Quick Links
|
|
499
|
+
|
|
500
|
+
[**NPM Package**](https://www.npmjs.com/package/@knowcode/doc-builder) | [**Live Demo**](https://doc-builder-delta.vercel.app) | [**Report Issues**](https://github.com/knowcode/doc-builder/issues) | [**Changelog**](CHANGELOG.md)
|
|
501
|
+
|
|
502
|
+
Made with ❤️ by the @knowcode team
|
|
427
503
|
|
|
428
|
-
|
|
504
|
+
</div>
|
|
@@ -1905,31 +1905,55 @@ tr:hover {
|
|
|
1905
1905
|
/* Phosphor Icons Alignment */
|
|
1906
1906
|
.ph {
|
|
1907
1907
|
display: inline-block;
|
|
1908
|
-
vertical-align:
|
|
1909
|
-
line-height:
|
|
1908
|
+
vertical-align: text-top;
|
|
1909
|
+
line-height: 0.8;
|
|
1910
1910
|
position: relative;
|
|
1911
|
-
top:
|
|
1911
|
+
top: 0.2em; /* Push down to align with x-height of text */
|
|
1912
1912
|
}
|
|
1913
1913
|
|
|
1914
|
-
/* Ensure icons in headings are properly
|
|
1914
|
+
/* Ensure icons in headings are properly aligned */
|
|
1915
1915
|
h1 .ph, h2 .ph, h3 .ph, h4 .ph, h5 .ph, h6 .ph {
|
|
1916
|
-
|
|
1917
|
-
|
|
1916
|
+
font-size: 0.85em; /* Slightly smaller in headings */
|
|
1917
|
+
line-height: 0.8;
|
|
1918
|
+
top: 0.15em;
|
|
1918
1919
|
}
|
|
1919
1920
|
|
|
1920
1921
|
/* Icons in lists need special handling */
|
|
1921
1922
|
li .ph {
|
|
1922
|
-
margin-right: 0.
|
|
1923
|
+
margin-right: 0.3em;
|
|
1924
|
+
font-size: 1.05em;
|
|
1925
|
+
line-height: 0.85;
|
|
1926
|
+
top: 0.15em;
|
|
1923
1927
|
}
|
|
1924
1928
|
|
|
1925
1929
|
/* Icons in tables */
|
|
1926
1930
|
td .ph, th .ph {
|
|
1927
|
-
|
|
1931
|
+
line-height: 0.8;
|
|
1932
|
+
top: 0.2em;
|
|
1928
1933
|
}
|
|
1929
1934
|
|
|
1930
1935
|
/* Icons in navigation */
|
|
1931
1936
|
.nav-item .ph,
|
|
1932
1937
|
.nav-title .ph {
|
|
1933
1938
|
vertical-align: middle;
|
|
1939
|
+
line-height: 1;
|
|
1934
1940
|
top: 0; /* Navigation items are flex, so no adjustment needed */
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
/* Icon size adjustments for better visual balance */
|
|
1944
|
+
.content p .ph {
|
|
1945
|
+
font-size: 1.05em; /* Slightly larger than text for visual balance */
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
/* Special handling for inline code with icons */
|
|
1949
|
+
code .ph {
|
|
1950
|
+
font-size: 0.9em;
|
|
1951
|
+
vertical-align: middle;
|
|
1952
|
+
line-height: 1;
|
|
1953
|
+
top: 0;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
/* Additional fine-tuning for specific contexts */
|
|
1957
|
+
.content-inner .ph {
|
|
1958
|
+
transform: translateY(0.05em); /* Very slight additional adjustment */
|
|
1935
1959
|
}
|