@takazudo/zfb 0.1.0-next.10 → 0.1.0-next.12
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/dist/config.d.ts +172 -10
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js.map +1 -1
- package/package.json +6 -6
package/dist/config.d.ts
CHANGED
|
@@ -347,16 +347,12 @@ export type TocConfig = {
|
|
|
347
347
|
/**
|
|
348
348
|
* Markdown / MDX parsing options.
|
|
349
349
|
*
|
|
350
|
-
* See [`ZfbConfig.markdown`] for the embed point.
|
|
351
|
-
* [`
|
|
352
|
-
* markdown knobs
|
|
353
|
-
*
|
|
354
|
-
* See
|
|
355
|
-
*
|
|
356
|
-
* See [`ZfbConfig.markdown`] for the embed point. Today the fields are
|
|
357
|
-
* [`gfm`](MarkdownConfig.gfm) and
|
|
358
|
-
* [`cjkFriendly`](MarkdownConfig.cjkFriendly); future markdown knobs
|
|
359
|
-
* (e.g. CommonMark variants, custom extensions) would also live here.
|
|
350
|
+
* See [`ZfbConfig.markdown`] for the embed point. Fields: [`gfm`],
|
|
351
|
+
* [`toc`], [`externalLinks`], [`cjkFriendly`], and [`features`].
|
|
352
|
+
* Future markdown knobs would also live here.
|
|
353
|
+
*
|
|
354
|
+
* See the "Markdown Features" docs category for the per-feature option
|
|
355
|
+
* reference once individual features are ported.
|
|
360
356
|
*
|
|
361
357
|
* Mirrors `MarkdownConfig` in crates/zfb/src/config.rs.
|
|
362
358
|
*/
|
|
@@ -436,7 +432,173 @@ export type MarkdownConfig = {
|
|
|
436
432
|
* Mirrors `MarkdownConfig::cjk_friendly` in crates/zfb/src/config.rs.
|
|
437
433
|
*/
|
|
438
434
|
cjkFriendly?: boolean;
|
|
435
|
+
/**
|
|
436
|
+
* Per-feature markdown pipeline toggles.
|
|
437
|
+
*
|
|
438
|
+
* Each field is a [`FeatureToggle`] (`true` / `false` / options object)
|
|
439
|
+
* or a feature-specific config type (for features that require extra
|
|
440
|
+
* parameters). Absent / `undefined` means all features are disabled,
|
|
441
|
+
* preserving the behaviour of the pre-features build byte-for-byte.
|
|
442
|
+
*
|
|
443
|
+
* Unknown keys are rejected at deserialization time by the Rust loader
|
|
444
|
+
* so a typo in `zfb.config.ts` surfaces as a clear error.
|
|
445
|
+
*
|
|
446
|
+
* Mirrors `MarkdownFeaturesConfig` in crates/zfb/src/config.rs.
|
|
447
|
+
*/
|
|
448
|
+
features?: MarkdownFeaturesConfig;
|
|
439
449
|
};
|
|
450
|
+
/**
|
|
451
|
+
* Per-feature toggle: `boolean` shorthand or an options object.
|
|
452
|
+
*
|
|
453
|
+
* `true` enables the feature with defaults; `false` (or absent) disables it.
|
|
454
|
+
* The object form carries per-feature options (fields vary by feature and
|
|
455
|
+
* are filled in by each feature's port sub-issue — stubs today).
|
|
456
|
+
*
|
|
457
|
+
* Mirrors `FeatureToggle` in crates/zfb/src/config.rs.
|
|
458
|
+
*/
|
|
459
|
+
export type FeatureToggle = boolean | FeatureOptions;
|
|
460
|
+
/**
|
|
461
|
+
* Empty options object for features that accept `{ ... }` but have no
|
|
462
|
+
* user-facing knobs yet. Fields are filled in by each feature's port
|
|
463
|
+
* sub-issue; this stub satisfies the schema shape requirement.
|
|
464
|
+
*
|
|
465
|
+
* Mirrors `FeatureOptions` in crates/zfb/src/config.rs.
|
|
466
|
+
*/
|
|
467
|
+
export type FeatureOptions = Record<string, never>;
|
|
468
|
+
/**
|
|
469
|
+
* Options for the `githubAutolinks` feature. Requires `repo`.
|
|
470
|
+
*
|
|
471
|
+
* TODO: fill in actual fields when the githubAutolinks feature is ported.
|
|
472
|
+
*
|
|
473
|
+
* Mirrors `GithubAutolinksConfig` in crates/zfb/src/config.rs.
|
|
474
|
+
*/
|
|
475
|
+
export type GithubAutolinksConfig = {
|
|
476
|
+
/** GitHub repository reference (`owner/repo`) used to build autolink URLs. */
|
|
477
|
+
repo?: string;
|
|
478
|
+
};
|
|
479
|
+
/**
|
|
480
|
+
* Options stub for the `codeEnrichment` feature.
|
|
481
|
+
*
|
|
482
|
+
* TODO: fill in actual fields when the codeEnrichment feature is ported.
|
|
483
|
+
*
|
|
484
|
+
* Mirrors `CodeEnrichmentConfig` in crates/zfb/src/config.rs.
|
|
485
|
+
*/
|
|
486
|
+
export type CodeEnrichmentConfig = Record<string, never>;
|
|
487
|
+
/**
|
|
488
|
+
* Options for the `tocExport` feature.
|
|
489
|
+
*
|
|
490
|
+
* Controls which headings are included in the exported `toc` JSON.
|
|
491
|
+
* `maxDepth` is the **absolute** heading depth (2–6):
|
|
492
|
+
* - `2` → h2 only
|
|
493
|
+
* - `3` (default) → h2 + h3
|
|
494
|
+
*
|
|
495
|
+
* This differs from `headingMarkerToc.maxDepth`, which counts levels
|
|
496
|
+
* starting from h2. The two features are independent.
|
|
497
|
+
*
|
|
498
|
+
* Mirrors `TocExportConfig` in crates/zfb-md-ast/src/features_config.rs.
|
|
499
|
+
*/
|
|
500
|
+
export type TocExportConfig = {
|
|
501
|
+
/** Maximum heading depth to include (absolute, 2–6). Default: 3. */
|
|
502
|
+
maxDepth?: number;
|
|
503
|
+
};
|
|
504
|
+
/**
|
|
505
|
+
* Options stub for the `imageDimensions` feature.
|
|
506
|
+
*
|
|
507
|
+
* TODO: fill in actual fields when the imageDimensions feature is ported.
|
|
508
|
+
*
|
|
509
|
+
* Mirrors `ImageDimensionsConfig` in crates/zfb/src/config.rs.
|
|
510
|
+
*/
|
|
511
|
+
export type ImageDimensionsConfig = Record<string, never>;
|
|
512
|
+
/**
|
|
513
|
+
* Options for the `linkValidation` feature.
|
|
514
|
+
*
|
|
515
|
+
* Validates internal `[text](file.md#anchor)` and `[text](#anchor)` links at
|
|
516
|
+
* build time. External URLs (`http://`, `https://`, `mailto:`) are skipped by
|
|
517
|
+
* default.
|
|
518
|
+
*
|
|
519
|
+
* Mirrors `LinkValidationConfig` in `crates/zfb-md-ast/src/features_config.rs`.
|
|
520
|
+
*/
|
|
521
|
+
export type LinkValidationConfig = {
|
|
522
|
+
/**
|
|
523
|
+
* When `true`, broken links are reported as errors (build can fail).
|
|
524
|
+
* Default: `false` (warn-only).
|
|
525
|
+
*/
|
|
526
|
+
failOnBroken?: boolean;
|
|
527
|
+
/**
|
|
528
|
+
* When `true` (default), external URLs are silently skipped.
|
|
529
|
+
* Set to `false` to validate external links as well.
|
|
530
|
+
*/
|
|
531
|
+
allowExternal?: boolean;
|
|
532
|
+
};
|
|
533
|
+
/**
|
|
534
|
+
* Options for the `transclude` feature.
|
|
535
|
+
*
|
|
536
|
+
* Enables `:::include{file="./path.md"}` directives that inline another
|
|
537
|
+
* file's parsed mdast at the include site.
|
|
538
|
+
*
|
|
539
|
+
* Mirrors `TranscludeConfig` in crates/zfb-md-ast/src/features_config.rs.
|
|
540
|
+
*/
|
|
541
|
+
export type TranscludeConfig = {
|
|
542
|
+
/**
|
|
543
|
+
* Maximum transclusion depth (chain length A→B→C→…).
|
|
544
|
+
*
|
|
545
|
+
* A depth of `1` allows only direct includes (the included file itself
|
|
546
|
+
* cannot include further files). Default: `5`. A cycle (A→B→A) is
|
|
547
|
+
* always detected regardless of `maxDepth` and treated as an error.
|
|
548
|
+
*/
|
|
549
|
+
maxDepth?: number;
|
|
550
|
+
};
|
|
551
|
+
/**
|
|
552
|
+
* Per-feature markdown pipeline configuration.
|
|
553
|
+
*
|
|
554
|
+
* All fields are optional; absent = feature disabled, behaviour unchanged
|
|
555
|
+
* from the pre-features build. Unknown keys are rejected at deserialization
|
|
556
|
+
* time by the Rust loader so a typo surfaces as a clear error.
|
|
557
|
+
*
|
|
558
|
+
* Mirrors `MarkdownFeaturesConfig` in crates/zfb/src/config.rs.
|
|
559
|
+
*/
|
|
560
|
+
export type MarkdownFeaturesConfig = {
|
|
561
|
+
/** GitHub-style alert blocks (`> [!NOTE]`, `> [!WARNING]`, etc.). */
|
|
562
|
+
githubAlerts?: FeatureToggle;
|
|
563
|
+
/** Reading-time estimate injected into the document frontmatter. */
|
|
564
|
+
readingTime?: FeatureToggle;
|
|
565
|
+
/** GitHub-style `owner/repo#123` and `SHA` autolinks. Requires `repo`. */
|
|
566
|
+
githubAutolinks?: GithubAutolinksConfig;
|
|
567
|
+
/** Code-block enrichment (copy button, language label, etc.). */
|
|
568
|
+
codeEnrichment?: CodeEnrichmentConfig;
|
|
569
|
+
/** Grouped code blocks rendered as tabs. */
|
|
570
|
+
codeTabs?: FeatureToggle;
|
|
571
|
+
/** Ruby annotation support (`{base}^{ruby}` syntax). */
|
|
572
|
+
ruby?: FeatureToggle;
|
|
573
|
+
/** Export the page TOC as structured data (e.g. for sidebar rendering). */
|
|
574
|
+
tocExport?: TocExportConfig;
|
|
575
|
+
/** Auto-detect and inject `width`/`height` on `<img>` elements. */
|
|
576
|
+
imageDimensions?: ImageDimensionsConfig;
|
|
577
|
+
/** Validate internal and external links at build time. */
|
|
578
|
+
linkValidation?: LinkValidationConfig;
|
|
579
|
+
/** Transclusion of other MDX files (`![[path]]` syntax). */
|
|
580
|
+
transclude?: TranscludeConfig;
|
|
581
|
+
/** Framework admonitions preset (maps `:::note` etc. to components). */
|
|
582
|
+
admonitionsPreset?: FeatureToggle;
|
|
583
|
+
/** Mermaid diagram rendering. */
|
|
584
|
+
mermaid?: FeatureToggle;
|
|
585
|
+
/** Lightbox / image-enlarge on click. */
|
|
586
|
+
imageEnlarge?: FeatureToggle;
|
|
587
|
+
/**
|
|
588
|
+
* Inline heading-marker TOC. Accepts either a `boolean` shorthand
|
|
589
|
+
* (`true` = enable with defaults, `false` = disable) or a full
|
|
590
|
+
* {@link TocConfig} options object — same union shape as the Rust
|
|
591
|
+
* `HeadingMarkerTocFeature` enum.
|
|
592
|
+
*/
|
|
593
|
+
headingMarkerToc?: HeadingMarkerTocFeature;
|
|
594
|
+
};
|
|
595
|
+
/**
|
|
596
|
+
* `headingMarkerToc` feature value: either a `boolean` shorthand or a
|
|
597
|
+
* full {@link TocConfig} options object.
|
|
598
|
+
*
|
|
599
|
+
* Mirrors `HeadingMarkerTocFeature` in crates/zfb-md-ast/src/features_config.rs.
|
|
600
|
+
*/
|
|
601
|
+
export type HeadingMarkerTocFeature = boolean | TocConfig;
|
|
440
602
|
/**
|
|
441
603
|
* Options for the external-link rewriter (port of `rehype-external-links`).
|
|
442
604
|
*
|
package/dist/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAC;AAE3C,MAAM,MAAM,aAAa,GAAG;IAC1B,wDAAwD;IACxD,IAAI,EAAE,MAAM,CAAC;IACb,oEAAoE;IACpE,IAAI,EAAE,MAAM,CAAC;IACb,4EAA4E;IAC5E,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;;;;;OAMG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG;IAC3B,oDAAoD;IACpD,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACnC,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,0DAA0D;IAC1D,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,kEAAkE;IAClE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,6CAA6C;IAC7C,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,wCAAwC;IACxC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gDAAgD;IAChD,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,8DAA8D;IAC9D,WAAW,CAAC,EAAE,aAAa,EAAE,CAAC;IAC9B,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B,6BAA6B;IAC7B,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IACzB;;;;;;;;;;OAUG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;;;;;;;;;OAYG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB;;;;;;;;;;;;;;;;;;;;;;;;;;;OA2BG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,oBAAoB,CAAC,EAAE,0BAA0B,CAAC;IAElD;;;;;;;;;;;;;;;;;;;OAmBG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAE,cAAc,CAAC;IAE1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA6BG;IACH,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAE3B;;;;;;;;;;;;;;;;OAgBG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAE7B;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACH,MAAM,CAAC,EAAE,UAAU,CAAC;CACrB,CAAC;AAEF;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,MAAM,CAAC;AAEtD;;;;;;;;;GASG;AACH,MAAM,MAAM,SAAS,GAAG;IACtB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;;;;;;OAOG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
|
package/dist/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,iEAAiE;AACjE,EAAE;AACF,kEAAkE;AAClE,uEAAuE;AACvE,uEAAuE;AACvE,sEAAsE;AACtE,+BAA+B;AAC/B,EAAE;AACF,yEAAyE;AACzE,uEAAuE;AACvE,uEAAuE;AACvE,kEAAkE;AAClE,EAAE;AACF,uEAAuE;AACvE,uEAAuE;
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,iEAAiE;AACjE,EAAE;AACF,kEAAkE;AAClE,uEAAuE;AACvE,uEAAuE;AACvE,sEAAsE;AACtE,+BAA+B;AAC/B,EAAE;AACF,yEAAyE;AACzE,uEAAuE;AACvE,uEAAuE;AACvE,kEAAkE;AAClE,EAAE;AACF,uEAAuE;AACvE,uEAAuE;AAivBvE;;;;GAIG;AACH,MAAM,UAAU,YAAY,CAAC,MAAiB;IAC5C,OAAO,MAAM,CAAC;AAChB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takazudo/zfb",
|
|
3
|
-
"version": "0.1.0-next.
|
|
3
|
+
"version": "0.1.0-next.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Rust-built static-site engine for Astro and Next.js users — millisecond rebuilds, single binary. SDK with islands, content collections, pagination, and config helpers.",
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
"LICENSE"
|
|
71
71
|
],
|
|
72
72
|
"optionalDependencies": {
|
|
73
|
-
"@takazudo/zfb-darwin-arm64": "0.1.0-next.
|
|
74
|
-
"@takazudo/zfb-darwin-x64": "0.1.0-next.
|
|
75
|
-
"@takazudo/zfb-linux-arm64-gnu": "0.1.0-next.
|
|
76
|
-
"@takazudo/zfb-linux-x64-gnu": "0.1.0-next.
|
|
77
|
-
"@takazudo/zfb-win32-x64-msvc": "0.1.0-next.
|
|
73
|
+
"@takazudo/zfb-darwin-arm64": "0.1.0-next.12",
|
|
74
|
+
"@takazudo/zfb-darwin-x64": "0.1.0-next.12",
|
|
75
|
+
"@takazudo/zfb-linux-arm64-gnu": "0.1.0-next.12",
|
|
76
|
+
"@takazudo/zfb-linux-x64-gnu": "0.1.0-next.12",
|
|
77
|
+
"@takazudo/zfb-win32-x64-msvc": "0.1.0-next.12"
|
|
78
78
|
},
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|