@knowcode/doc-builder 1.5.7 → 1.5.9

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 CHANGED
@@ -5,6 +5,46 @@ 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.9] - 2025-07-22
9
+
10
+ ### Added
11
+ - Comprehensive SEO Optimization Guide with extensive external resources
12
+ - Detailed explanations of all SEO features and how they work
13
+ - References to 20+ external SEO tools and learning resources
14
+ - Keyword research tools and performance testing recommendations
15
+ - SEO monitoring strategies and success metrics
16
+ - Actionable SEO checklist for documentation projects
17
+
18
+ ### Documentation
19
+ - Created detailed guide explaining automatic meta tag generation
20
+ - Added sections on Open Graph Protocol and Twitter Cards
21
+ - Included structured data (JSON-LD) explanations
22
+ - Referenced Google's official SEO guidelines and best practices
23
+ - Added links to free SEO tools and validators
24
+
25
+ ## [1.5.8] - 2025-07-22
26
+
27
+ ### Changed
28
+ - **BREAKING**: `seo-check` command now analyzes generated HTML files instead of markdown source files
29
+ - Completely rewrote SEO analysis to inspect actual HTML output that search engines see
30
+ - Added comprehensive checks for all SEO elements in HTML including:
31
+ - Title tags and optimal length
32
+ - Meta descriptions and character limits
33
+ - Keywords meta tags
34
+ - Canonical URLs
35
+ - H1 tags and consistency with titles
36
+ - Open Graph tags for social media
37
+ - Twitter Card tags
38
+ - Structured data (JSON-LD)
39
+ - Updated help text and examples to reflect HTML analysis
40
+ - Improved error messages to guide users to build HTML first
41
+
42
+ ### Why This Change?
43
+ - SEO analysis should check what search engines actually see (the generated HTML)
44
+ - Provides more accurate and comprehensive SEO insights
45
+ - Can verify that all meta tags are properly generated
46
+ - Ensures Open Graph and Twitter Cards are working correctly
47
+
8
48
  ## [1.5.7] - 2025-07-22
9
49
 
10
50
  ### Fixed
package/cli.js CHANGED
@@ -196,36 +196,38 @@ ${chalk.yellow('Get your verification code from Google Search Console.')}
196
196
  // SEO Check command
197
197
  program
198
198
  .command('seo-check [path]')
199
- .description('Analyze SEO for your documentation pages')
199
+ .description('Analyze SEO metadata in generated HTML files')
200
200
  .option('-c, --config <path>', 'path to config file (default: doc-builder.config.js)')
201
- .option('--fix', 'auto-fix common SEO issues')
202
201
  .addHelpText('after', `
203
202
  ${chalk.yellow('Examples:')}
204
- ${chalk.gray('$')} doc-builder seo-check ${chalk.gray('# Check all pages')}
205
- ${chalk.gray('$')} doc-builder seo-check docs/guide.md ${chalk.gray('# Check specific page')}
206
- ${chalk.gray('$')} doc-builder seo-check --fix ${chalk.gray('# Auto-fix issues')}
207
-
208
- ${chalk.yellow('This command analyzes:')}
209
- Title length and optimization (50-60 characters)
210
- Meta descriptions (140-160 characters)
211
- Keywords usage and relevance
212
- Front matter SEO fields
213
- Duplicate content issues
203
+ ${chalk.gray('$')} doc-builder seo-check ${chalk.gray('# Check all HTML pages')}
204
+ ${chalk.gray('$')} doc-builder seo-check html/guide.html ${chalk.gray('# Check specific HTML file')}
205
+
206
+ ${chalk.yellow('This command analyzes generated HTML files for:')}
207
+ • Title tags and length (50-60 characters)
208
+ Meta descriptions (140-160 characters)
209
+ Keywords meta tags
210
+ Canonical URLs
211
+ H1 tags and consistency
212
+ Open Graph tags (Facebook)
213
+ • Twitter Card tags
214
+ • Structured data (JSON-LD)
215
+
216
+ ${chalk.yellow('Note:')} Run 'doc-builder build' first to generate HTML files.
214
217
  `)
215
218
  .action(async (filePath, options) => {
216
219
  try {
217
220
  const config = await loadConfig(options.config || 'doc-builder.config.js', options);
218
- const docsDir = path.resolve(config.docsDir || 'docs');
221
+ const outputDir = path.resolve(config.outputDir || 'html');
219
222
 
220
- // Check if docsDir exists
221
- if (!await fs.pathExists(docsDir)) {
222
- console.error(chalk.red(`Documentation directory not found: ${docsDir}`));
223
- console.log(chalk.yellow('\nPlease ensure you have a docs directory with markdown files.'));
224
- console.log(chalk.gray(`Create it with: mkdir docs && echo "# Documentation" > docs/README.md`));
223
+ // Check if outputDir exists
224
+ if (!await fs.pathExists(outputDir)) {
225
+ console.error(chalk.red(`Output directory not found: ${outputDir}`));
226
+ console.log(chalk.yellow('\nPlease build your documentation first with: doc-builder build'));
225
227
  process.exit(1);
226
228
  }
227
229
 
228
- console.log(chalk.cyan('🔍 Analyzing SEO...'));
230
+ console.log(chalk.cyan('🔍 Analyzing SEO in generated HTML files...'));
229
231
 
230
232
  // Get files to check
231
233
  let files = [];
@@ -238,7 +240,7 @@ ${chalk.yellow('This command analyzes:')}
238
240
  process.exit(1);
239
241
  }
240
242
  } else {
241
- // Get all markdown files
243
+ // Get all HTML files
242
244
  const getAllFiles = async (dir) => {
243
245
  const results = [];
244
246
  const items = await fs.readdir(dir);
@@ -247,13 +249,13 @@ ${chalk.yellow('This command analyzes:')}
247
249
  const stat = await fs.stat(fullPath);
248
250
  if (stat.isDirectory() && !item.startsWith('.')) {
249
251
  results.push(...await getAllFiles(fullPath));
250
- } else if (item.endsWith('.md')) {
252
+ } else if (item.endsWith('.html') && item !== '404.html') {
251
253
  results.push(fullPath);
252
254
  }
253
255
  }
254
256
  return results;
255
257
  };
256
- files = await getAllFiles(docsDir);
258
+ files = await getAllFiles(outputDir);
257
259
  }
258
260
 
259
261
  // Analyze each file
@@ -262,19 +264,43 @@ ${chalk.yellow('This command analyzes:')}
262
264
 
263
265
  for (const file of files) {
264
266
  const content = await fs.readFile(file, 'utf-8');
265
- const { data: frontMatter, content: mainContent } = matter(content);
266
- const relativePath = path.relative(docsDir, file);
267
+ const relativePath = path.relative(outputDir, file);
268
+
269
+ // Extract metadata from HTML
270
+ const titleMatch = content.match(/<title>([^<]+)<\/title>/);
271
+ const descMatch = content.match(/<meta\s+name="description"\s+content="([^"]+)"/);
272
+ const keywordsMatch = content.match(/<meta\s+name="keywords"\s+content="([^"]+)"/);
273
+ const canonicalMatch = content.match(/<link\s+rel="canonical"\s+href="([^"]+)"/);
274
+ const h1Match = content.match(/<h1>([^<]+)<\/h1>/);
275
+
276
+ const title = titleMatch ? titleMatch[1] : 'No title found';
277
+ const description = descMatch ? descMatch[1] : '';
278
+ const keywords = keywordsMatch ? keywordsMatch[1].split(',').map(k => k.trim()) : [];
279
+ const canonical = canonicalMatch ? canonicalMatch[1] : '';
280
+ const h1 = h1Match ? h1Match[1] : '';
281
+
282
+ // Check for Open Graph tags
283
+ const ogTitleMatch = content.match(/<meta\s+property="og:title"\s+content="([^"]+)"/);
284
+ const ogDescMatch = content.match(/<meta\s+property="og:description"\s+content="([^"]+)"/);
285
+ const ogImageMatch = content.match(/<meta\s+property="og:image"\s+content="([^"]+)"/);
286
+
287
+ // Check for Twitter Card tags
288
+ const twitterTitleMatch = content.match(/<meta\s+name="twitter:title"\s+content="([^"]+)"/);
289
+ const twitterDescMatch = content.match(/<meta\s+name="twitter:description"\s+content="([^"]+)"/);
267
290
 
268
- // Extract current metadata
269
- const h1Match = mainContent.match(/^#\s+(.+)$/m);
270
- const h1Title = h1Match ? h1Match[1] : null;
271
- const title = frontMatter.title || h1Title || path.basename(file, '.md');
272
- const description = frontMatter.description || generateDescription(mainContent, 'smart');
273
- const keywords = frontMatter.keywords || [];
291
+ // Check for structured data
292
+ const structuredDataMatch = content.match(/<script\s+type="application\/ld\+json">/);
274
293
 
275
294
  // Check title
276
295
  const titleLength = title.length;
277
- if (titleLength > 60) {
296
+ if (!titleMatch) {
297
+ issues.push({
298
+ file: relativePath,
299
+ type: 'title',
300
+ message: 'Missing <title> tag',
301
+ severity: 'critical'
302
+ });
303
+ } else if (titleLength > 60) {
278
304
  issues.push({
279
305
  file: relativePath,
280
306
  type: 'title',
@@ -291,38 +317,90 @@ ${chalk.yellow('This command analyzes:')}
291
317
  }
292
318
 
293
319
  // Check description
294
- const descLength = description.length;
295
- if (descLength > 160) {
320
+ if (!descMatch) {
296
321
  issues.push({
297
322
  file: relativePath,
298
323
  type: 'description',
299
- message: `Description too long (${descLength} chars, max 160)`,
324
+ message: 'Missing meta description',
325
+ severity: 'critical'
326
+ });
327
+ } else {
328
+ const descLength = description.length;
329
+ if (descLength > 160) {
330
+ issues.push({
331
+ file: relativePath,
332
+ type: 'description',
333
+ message: `Description too long (${descLength} chars, max 160)`,
300
334
  current: description,
301
335
  suggestion: description.substring(0, 157) + '...'
302
336
  });
303
- } else if (descLength < 120) {
337
+ } else if (descLength < 120) {
338
+ suggestions.push({
339
+ file: relativePath,
340
+ type: 'description',
341
+ message: `Description might be too short (${descLength} chars, ideal 140-160)`
342
+ });
343
+ }
344
+ }
345
+
346
+ // Check keywords
347
+ if (!keywordsMatch || keywords.length === 0) {
304
348
  suggestions.push({
305
349
  file: relativePath,
306
- type: 'description',
307
- message: `Description might be too short (${descLength} chars, ideal 140-160)`
350
+ type: 'keywords',
351
+ message: 'No keywords meta tag found'
308
352
  });
309
353
  }
310
354
 
311
- // Check keywords
312
- if (keywords.length === 0 && !frontMatter.description) {
355
+ // Check canonical URL
356
+ if (!canonicalMatch) {
313
357
  suggestions.push({
314
358
  file: relativePath,
315
- type: 'keywords',
316
- message: 'No keywords defined in front matter'
359
+ type: 'canonical',
360
+ message: 'Missing canonical URL'
361
+ });
362
+ }
363
+
364
+ // Check H1
365
+ if (!h1Match) {
366
+ issues.push({
367
+ file: relativePath,
368
+ type: 'h1',
369
+ message: 'Missing H1 tag',
370
+ severity: 'important'
371
+ });
372
+ } else if (h1 !== title.split(' | ')[0]) {
373
+ suggestions.push({
374
+ file: relativePath,
375
+ type: 'h1',
376
+ message: 'H1 differs from page title'
377
+ });
378
+ }
379
+
380
+ // Check Open Graph tags
381
+ if (!ogTitleMatch || !ogDescMatch) {
382
+ suggestions.push({
383
+ file: relativePath,
384
+ type: 'opengraph',
385
+ message: 'Missing or incomplete Open Graph tags'
386
+ });
387
+ }
388
+
389
+ // Check Twitter Card tags
390
+ if (!twitterTitleMatch || !twitterDescMatch) {
391
+ suggestions.push({
392
+ file: relativePath,
393
+ type: 'twitter',
394
+ message: 'Missing or incomplete Twitter Card tags'
317
395
  });
318
396
  }
319
397
 
320
- // Check for front matter
321
- if (!frontMatter.title && !frontMatter.description) {
398
+ // Check structured data
399
+ if (!structuredDataMatch) {
322
400
  suggestions.push({
323
401
  file: relativePath,
324
- type: 'frontmatter',
325
- message: 'No SEO front matter found'
402
+ type: 'structured-data',
403
+ message: 'Missing structured data (JSON-LD)'
326
404
  });
327
405
  }
328
406
  }
@@ -353,15 +431,16 @@ ${chalk.yellow('This command analyzes:')}
353
431
  });
354
432
  }
355
433
 
356
- console.log(`\n${chalk.cyan('💡 Tips:')}`);
357
- console.log(' • Add front matter to customize SEO per page');
434
+ console.log(`\n${chalk.cyan('💡 Tips to improve SEO:')}`);
435
+ console.log(' • Add front matter to markdown files to customize SEO');
358
436
  console.log(' • Keep titles between 50-60 characters');
359
437
  console.log(' • Write descriptions between 140-160 characters');
360
438
  console.log(' • Include relevant keywords in front matter');
361
- console.log(`\n${chalk.gray('Example front matter:')}`);
439
+ console.log(' Ensure each page has a unique title and description');
440
+ console.log(`\n${chalk.gray('Add to your markdown files:')}`);
362
441
  console.log(chalk.gray('---'));
363
442
  console.log(chalk.gray('title: "Your SEO Optimized Title Here"'));
364
- console.log(chalk.gray('description: "A compelling description between 140-160 characters that includes keywords and encourages clicks."'));
443
+ console.log(chalk.gray('description: "A compelling description between 140-160 characters."'));
365
444
  console.log(chalk.gray('keywords: ["keyword1", "keyword2", "keyword3"]'));
366
445
  console.log(chalk.gray('---'));
367
446
  }
package/html/README.html CHANGED
@@ -61,8 +61,8 @@
61
61
  "name": "Knowcode Ltd",
62
62
  "url": "https://knowcode.tech"
63
63
  },
64
- "datePublished": "2025-07-22T08:09:57.857Z",
65
- "dateModified": "2025-07-22T08:09:57.857Z",
64
+ "datePublished": "2025-07-22T08:28:44.971Z",
65
+ "dateModified": "2025-07-22T08:28:44.971Z",
66
66
  "mainEntityOfPage": {
67
67
  "@type": "WebPage",
68
68
  "@id": "https://doc-builder-delta.vercel.app/README.html"
@@ -95,7 +95,7 @@
95
95
 
96
96
  <div class="header-actions">
97
97
  <div class="deployment-info">
98
- <span class="deployment-date" title="Built with doc-builder v1.5.5">Last updated: Jul 22, 2025, 08:09 AM UTC</span>
98
+ <span class="deployment-date" title="Built with doc-builder v1.5.8">Last updated: Jul 22, 2025, 08:28 AM UTC</span>
99
99
  </div>
100
100
 
101
101
 
@@ -158,7 +158,7 @@
158
158
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
159
159
  <a href="/guides/google-site-verification-guide.html" class="nav-item" data-tooltip="Google Search Console verification allows you to: Monitor your site&#039;s performance in Google Search Submit sitemaps for better indexing View search..."><i class="fas fa-file-alt"></i> Google Site Verification Guide</a>
160
160
  <a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
161
- <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Good SEO helps your documentation: Rank higher in search results Get more organic traffic Improve click-through rates Reach the right audience Build..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
161
+ <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
162
162
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
163
163
  </nav>
164
164
  <div class="resize-handle"></div>
@@ -61,8 +61,8 @@
61
61
  "name": "Knowcode Ltd",
62
62
  "url": "https://knowcode.tech"
63
63
  },
64
- "datePublished": "2025-07-22T08:09:57.871Z",
65
- "dateModified": "2025-07-22T08:09:57.871Z",
64
+ "datePublished": "2025-07-22T08:28:44.983Z",
65
+ "dateModified": "2025-07-22T08:28:44.983Z",
66
66
  "mainEntityOfPage": {
67
67
  "@type": "WebPage",
68
68
  "@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
@@ -95,7 +95,7 @@
95
95
 
96
96
  <div class="header-actions">
97
97
  <div class="deployment-info">
98
- <span class="deployment-date" title="Built with doc-builder v1.5.5">Last updated: Jul 22, 2025, 08:09 AM UTC</span>
98
+ <span class="deployment-date" title="Built with doc-builder v1.5.8">Last updated: Jul 22, 2025, 08:28 AM UTC</span>
99
99
  </div>
100
100
 
101
101
 
@@ -158,7 +158,7 @@
158
158
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
159
159
  <a href="/guides/google-site-verification-guide.html" class="nav-item" data-tooltip="Google Search Console verification allows you to: Monitor your site&#039;s performance in Google Search Submit sitemaps for better indexing View search..."><i class="fas fa-file-alt"></i> Google Site Verification Guide</a>
160
160
  <a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
161
- <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Good SEO helps your documentation: Rank higher in search results Get more organic traffic Improve click-through rates Reach the right audience Build..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
161
+ <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
162
162
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
163
163
  </nav>
164
164
  <div class="resize-handle"></div>
@@ -61,8 +61,8 @@
61
61
  "name": "Knowcode Ltd",
62
62
  "url": "https://knowcode.tech"
63
63
  },
64
- "datePublished": "2025-07-22T08:09:57.875Z",
65
- "dateModified": "2025-07-22T08:09:57.875Z",
64
+ "datePublished": "2025-07-22T08:28:44.986Z",
65
+ "dateModified": "2025-07-22T08:28:44.986Z",
66
66
  "mainEntityOfPage": {
67
67
  "@type": "WebPage",
68
68
  "@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
@@ -101,7 +101,7 @@
101
101
 
102
102
  <div class="header-actions">
103
103
  <div class="deployment-info">
104
- <span class="deployment-date" title="Built with doc-builder v1.5.5">Last updated: Jul 22, 2025, 08:09 AM UTC</span>
104
+ <span class="deployment-date" title="Built with doc-builder v1.5.8">Last updated: Jul 22, 2025, 08:28 AM UTC</span>
105
105
  </div>
106
106
 
107
107
 
@@ -164,7 +164,7 @@
164
164
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
165
165
  <a href="/guides/google-site-verification-guide.html" class="nav-item" data-tooltip="Google Search Console verification allows you to: Monitor your site&#039;s performance in Google Search Submit sitemaps for better indexing View search..."><i class="fas fa-file-alt"></i> Google Site Verification Guide</a>
166
166
  <a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
167
- <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Good SEO helps your documentation: Rank higher in search results Get more organic traffic Improve click-through rates Reach the right audience Build..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
167
+ <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
168
168
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
169
169
  </nav>
170
170
  <div class="resize-handle"></div>
@@ -61,8 +61,8 @@
61
61
  "name": "Knowcode Ltd",
62
62
  "url": "https://knowcode.tech"
63
63
  },
64
- "datePublished": "2025-07-22T08:09:57.879Z",
65
- "dateModified": "2025-07-22T08:09:57.879Z",
64
+ "datePublished": "2025-07-22T08:28:44.989Z",
65
+ "dateModified": "2025-07-22T08:28:44.989Z",
66
66
  "mainEntityOfPage": {
67
67
  "@type": "WebPage",
68
68
  "@id": "https://doc-builder-delta.vercel.app/guides/claude-workflow-guide.html"
@@ -101,7 +101,7 @@
101
101
 
102
102
  <div class="header-actions">
103
103
  <div class="deployment-info">
104
- <span class="deployment-date" title="Built with doc-builder v1.5.5">Last updated: Jul 22, 2025, 08:09 AM UTC</span>
104
+ <span class="deployment-date" title="Built with doc-builder v1.5.8">Last updated: Jul 22, 2025, 08:28 AM UTC</span>
105
105
  </div>
106
106
 
107
107
 
@@ -164,7 +164,7 @@
164
164
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
165
165
  <a href="/guides/google-site-verification-guide.html" class="nav-item" data-tooltip="Google Search Console verification allows you to: Monitor your site&#039;s performance in Google Search Submit sitemaps for better indexing View search..."><i class="fas fa-file-alt"></i> Google Site Verification Guide</a>
166
166
  <a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
167
- <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Good SEO helps your documentation: Rank higher in search results Get more organic traffic Improve click-through rates Reach the right audience Build..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
167
+ <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
168
168
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
169
169
  </nav>
170
170
  <div class="resize-handle"></div>
@@ -61,8 +61,8 @@
61
61
  "name": "Knowcode Ltd",
62
62
  "url": "https://knowcode.tech"
63
63
  },
64
- "datePublished": "2025-07-22T08:09:57.884Z",
65
- "dateModified": "2025-07-22T08:09:57.884Z",
64
+ "datePublished": "2025-07-22T08:28:44.992Z",
65
+ "dateModified": "2025-07-22T08:28:44.992Z",
66
66
  "mainEntityOfPage": {
67
67
  "@type": "WebPage",
68
68
  "@id": "https://doc-builder-delta.vercel.app/guides/documentation-standards.html"
@@ -101,7 +101,7 @@
101
101
 
102
102
  <div class="header-actions">
103
103
  <div class="deployment-info">
104
- <span class="deployment-date" title="Built with doc-builder v1.5.5">Last updated: Jul 22, 2025, 08:09 AM UTC</span>
104
+ <span class="deployment-date" title="Built with doc-builder v1.5.8">Last updated: Jul 22, 2025, 08:28 AM UTC</span>
105
105
  </div>
106
106
 
107
107
 
@@ -164,7 +164,7 @@
164
164
  <a href="/guides/documentation-standards.html" class="nav-item active" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
165
165
  <a href="/guides/google-site-verification-guide.html" class="nav-item" data-tooltip="Google Search Console verification allows you to: Monitor your site&#039;s performance in Google Search Submit sitemaps for better indexing View search..."><i class="fas fa-file-alt"></i> Google Site Verification Guide</a>
166
166
  <a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
167
- <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Good SEO helps your documentation: Rank higher in search results Get more organic traffic Improve click-through rates Reach the right audience Build..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
167
+ <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
168
168
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
169
169
  </nav>
170
170
  <div class="resize-handle"></div>
@@ -61,8 +61,8 @@
61
61
  "name": "Knowcode Ltd",
62
62
  "url": "https://knowcode.tech"
63
63
  },
64
- "datePublished": "2025-07-22T08:09:57.893Z",
65
- "dateModified": "2025-07-22T08:09:57.893Z",
64
+ "datePublished": "2025-07-22T08:28:45.000Z",
65
+ "dateModified": "2025-07-22T08:28:45.000Z",
66
66
  "mainEntityOfPage": {
67
67
  "@type": "WebPage",
68
68
  "@id": "https://doc-builder-delta.vercel.app/guides/google-site-verification-guide.html"
@@ -101,7 +101,7 @@
101
101
 
102
102
  <div class="header-actions">
103
103
  <div class="deployment-info">
104
- <span class="deployment-date" title="Built with doc-builder v1.5.5">Last updated: Jul 22, 2025, 08:09 AM UTC</span>
104
+ <span class="deployment-date" title="Built with doc-builder v1.5.8">Last updated: Jul 22, 2025, 08:28 AM UTC</span>
105
105
  </div>
106
106
 
107
107
 
@@ -164,7 +164,7 @@
164
164
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
165
165
  <a href="/guides/google-site-verification-guide.html" class="nav-item active" data-tooltip="Google Search Console verification allows you to: Monitor your site&#039;s performance in Google Search Submit sitemaps for better indexing View search..."><i class="fas fa-file-alt"></i> Google Site Verification Guide</a>
166
166
  <a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
167
- <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Good SEO helps your documentation: Rank higher in search results Get more organic traffic Improve click-through rates Reach the right audience Build..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
167
+ <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
168
168
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
169
169
  </nav>
170
170
  <div class="resize-handle"></div>
@@ -61,8 +61,8 @@
61
61
  "name": "Knowcode Ltd",
62
62
  "url": "https://knowcode.tech"
63
63
  },
64
- "datePublished": "2025-07-22T08:09:57.898Z",
65
- "dateModified": "2025-07-22T08:09:57.898Z",
64
+ "datePublished": "2025-07-22T08:28:45.004Z",
65
+ "dateModified": "2025-07-22T08:28:45.004Z",
66
66
  "mainEntityOfPage": {
67
67
  "@type": "WebPage",
68
68
  "@id": "https://doc-builder-delta.vercel.app/guides/seo-guide.html"
@@ -101,7 +101,7 @@
101
101
 
102
102
  <div class="header-actions">
103
103
  <div class="deployment-info">
104
- <span class="deployment-date" title="Built with doc-builder v1.5.5">Last updated: Jul 22, 2025, 08:09 AM UTC</span>
104
+ <span class="deployment-date" title="Built with doc-builder v1.5.8">Last updated: Jul 22, 2025, 08:28 AM UTC</span>
105
105
  </div>
106
106
 
107
107
 
@@ -164,7 +164,7 @@
164
164
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
165
165
  <a href="/guides/google-site-verification-guide.html" class="nav-item" data-tooltip="Google Search Console verification allows you to: Monitor your site&#039;s performance in Google Search Submit sitemaps for better indexing View search..."><i class="fas fa-file-alt"></i> Google Site Verification Guide</a>
166
166
  <a href="/guides/seo-guide.html" class="nav-item active" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
167
- <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="Good SEO helps your documentation: Rank higher in search results Get more organic traffic Improve click-through rates Reach the right audience Build..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
167
+ <a href="/guides/seo-optimization-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features that automatically optimize your documentation for search..."><i class="fas fa-file-alt"></i> Seo Optimization Guide</a>
168
168
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
169
169
  </nav>
170
170
  <div class="resize-handle"></div>