@bendyline/squisq-formats 1.3.0 → 1.4.0
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/chunk-6M7Z25LA.js +46 -0
- package/dist/chunk-6M7Z25LA.js.map +1 -0
- package/dist/{chunk-S3Y7H2BK.js → chunk-APSIAEXL.js} +9 -8
- package/dist/chunk-APSIAEXL.js.map +1 -0
- package/dist/{chunk-UDS45KUJ.js → chunk-BJQIJ4S4.js} +36 -52
- package/dist/chunk-BJQIJ4S4.js.map +1 -0
- package/dist/{chunk-33YRFXZZ.js → chunk-CRTC6DEX.js} +259 -13
- package/dist/chunk-CRTC6DEX.js.map +1 -0
- package/dist/chunk-FMOIGA5T.js +201 -0
- package/dist/chunk-FMOIGA5T.js.map +1 -0
- package/dist/{chunk-VN2KEOYB.js → chunk-I2GFTEOV.js} +321 -91
- package/dist/chunk-I2GFTEOV.js.map +1 -0
- package/dist/chunk-JBNVE2GV.js +116 -0
- package/dist/chunk-JBNVE2GV.js.map +1 -0
- package/dist/chunk-L53YIGYS.js +141 -0
- package/dist/chunk-L53YIGYS.js.map +1 -0
- package/dist/{chunk-ERZ627GR.js → chunk-ON232HJR.js} +11 -26
- package/dist/chunk-ON232HJR.js.map +1 -0
- package/dist/chunk-PN52A5AA.js +32 -0
- package/dist/chunk-PN52A5AA.js.map +1 -0
- package/dist/{chunk-7DEUGIOO.js → chunk-QSE7EWE7.js} +12 -87
- package/dist/chunk-QSE7EWE7.js.map +1 -0
- package/dist/container/index.d.ts +7 -5
- package/dist/container/index.js +39 -70
- package/dist/container/index.js.map +1 -1
- package/dist/csv/index.d.ts +37 -0
- package/dist/csv/index.js +13 -0
- package/dist/csv/index.js.map +1 -0
- package/dist/docx/index.d.ts +128 -15
- package/dist/docx/index.js +19 -22
- package/dist/docx/index.js.map +1 -1
- package/dist/epub/index.d.ts +66 -11
- package/dist/epub/index.js +11 -18
- package/dist/epub/index.js.map +1 -1
- package/dist/html/index.d.ts +315 -15
- package/dist/html/index.js +32 -165
- package/dist/html/index.js.map +1 -1
- package/dist/index.d.ts +10 -38
- package/dist/index.js +80 -37
- package/dist/index.js.map +1 -1
- package/dist/ooxml/index.d.ts +353 -14
- package/dist/ooxml/index.js +116 -22
- package/dist/ooxml/index.js.map +1 -1
- package/dist/pdf/index.d.ts +143 -17
- package/dist/pdf/index.js +16 -25
- package/dist/pdf/index.js.map +1 -1
- package/dist/pptx/index.d.ts +98 -21
- package/dist/pptx/index.js +18 -34
- package/dist/pptx/index.js.map +1 -1
- package/dist/xlsx/index.d.ts +29 -25
- package/dist/xlsx/index.js +13 -44
- package/dist/xlsx/index.js.map +1 -1
- package/package.json +7 -2
- package/src/__tests__/csvImport.test.ts +51 -0
- package/src/__tests__/exportThemeReconciliation.test.ts +87 -0
- package/src/__tests__/htmlImport.test.ts +57 -0
- package/src/__tests__/plainHtml.test.ts +31 -0
- package/src/__tests__/pptxExport.test.ts +138 -0
- package/src/__tests__/pptxImport.test.ts +70 -0
- package/src/__tests__/roundTripMatrix.fixtures.ts +86 -0
- package/src/__tests__/roundTripMatrix.helpers.ts +154 -0
- package/src/__tests__/roundTripMatrix.test.ts +136 -0
- package/src/__tests__/xlsxImport.test.ts +80 -0
- package/src/csv/index.ts +165 -0
- package/src/docx/export.ts +27 -44
- package/src/docx/import.ts +1 -2
- package/src/epub/export.ts +10 -27
- package/src/html/import.ts +297 -0
- package/src/html/index.ts +4 -0
- package/src/html/plainHtml.ts +66 -16
- package/src/index.ts +10 -3
- package/src/ooxml/namespaces.ts +3 -0
- package/src/pdf/export.ts +10 -5
- package/src/pdf/import.ts +1 -1
- package/src/pptx/export.ts +225 -85
- package/src/pptx/import.ts +156 -0
- package/src/pptx/index.ts +10 -28
- package/src/shared/inlineRuns.ts +99 -0
- package/src/shared/text.ts +41 -0
- package/src/xlsx/import.ts +159 -0
- package/src/xlsx/index.ts +11 -28
- package/dist/__tests__/container.test.d.ts +0 -8
- package/dist/__tests__/container.test.d.ts.map +0 -1
- package/dist/__tests__/container.test.js +0 -147
- package/dist/__tests__/container.test.js.map +0 -1
- package/dist/__tests__/docxExport.test.d.ts +0 -8
- package/dist/__tests__/docxExport.test.d.ts.map +0 -1
- package/dist/__tests__/docxExport.test.js +0 -383
- package/dist/__tests__/docxExport.test.js.map +0 -1
- package/dist/__tests__/docxImport.test.d.ts +0 -8
- package/dist/__tests__/docxImport.test.d.ts.map +0 -1
- package/dist/__tests__/docxImport.test.js +0 -309
- package/dist/__tests__/docxImport.test.js.map +0 -1
- package/dist/__tests__/epub.test.d.ts +0 -8
- package/dist/__tests__/epub.test.d.ts.map +0 -1
- package/dist/__tests__/epub.test.js +0 -472
- package/dist/__tests__/epub.test.js.map +0 -1
- package/dist/__tests__/html.test.d.ts +0 -8
- package/dist/__tests__/html.test.d.ts.map +0 -1
- package/dist/__tests__/html.test.js +0 -317
- package/dist/__tests__/html.test.js.map +0 -1
- package/dist/__tests__/ooxml.test.d.ts +0 -5
- package/dist/__tests__/ooxml.test.d.ts.map +0 -1
- package/dist/__tests__/ooxml.test.js +0 -152
- package/dist/__tests__/ooxml.test.js.map +0 -1
- package/dist/__tests__/pdfExport.test.d.ts +0 -8
- package/dist/__tests__/pdfExport.test.d.ts.map +0 -1
- package/dist/__tests__/pdfExport.test.js +0 -275
- package/dist/__tests__/pdfExport.test.js.map +0 -1
- package/dist/__tests__/pdfImport.test.d.ts +0 -11
- package/dist/__tests__/pdfImport.test.d.ts.map +0 -1
- package/dist/__tests__/pdfImport.test.js +0 -254
- package/dist/__tests__/pdfImport.test.js.map +0 -1
- package/dist/__tests__/plainHtml.test.d.ts +0 -5
- package/dist/__tests__/plainHtml.test.d.ts.map +0 -1
- package/dist/__tests__/plainHtml.test.js +0 -327
- package/dist/__tests__/plainHtml.test.js.map +0 -1
- package/dist/__tests__/plainHtmlBundle.test.d.ts +0 -11
- package/dist/__tests__/plainHtmlBundle.test.d.ts.map +0 -1
- package/dist/__tests__/plainHtmlBundle.test.js +0 -210
- package/dist/__tests__/plainHtmlBundle.test.js.map +0 -1
- package/dist/__tests__/roundTrip.test.d.ts +0 -7
- package/dist/__tests__/roundTrip.test.d.ts.map +0 -1
- package/dist/__tests__/roundTrip.test.js +0 -173
- package/dist/__tests__/roundTrip.test.js.map +0 -1
- package/dist/chunk-33YRFXZZ.js.map +0 -1
- package/dist/chunk-67KIJHV2.js +0 -21
- package/dist/chunk-67KIJHV2.js.map +0 -1
- package/dist/chunk-7DEUGIOO.js.map +0 -1
- package/dist/chunk-ERZ627GR.js.map +0 -1
- package/dist/chunk-S3Y7H2BK.js.map +0 -1
- package/dist/chunk-UDS45KUJ.js.map +0 -1
- package/dist/chunk-VN2KEOYB.js.map +0 -1
- package/dist/chunk-YN5HFCEW.js +0 -120
- package/dist/chunk-YN5HFCEW.js.map +0 -1
- package/dist/container/index.d.ts.map +0 -1
- package/dist/docx/export.d.ts +0 -69
- package/dist/docx/export.d.ts.map +0 -1
- package/dist/docx/export.js +0 -985
- package/dist/docx/export.js.map +0 -1
- package/dist/docx/import.d.ts +0 -65
- package/dist/docx/import.d.ts.map +0 -1
- package/dist/docx/import.js +0 -779
- package/dist/docx/import.js.map +0 -1
- package/dist/docx/index.d.ts.map +0 -1
- package/dist/docx/styles.d.ts +0 -68
- package/dist/docx/styles.d.ts.map +0 -1
- package/dist/docx/styles.js +0 -125
- package/dist/docx/styles.js.map +0 -1
- package/dist/epub/export.d.ts +0 -72
- package/dist/epub/export.d.ts.map +0 -1
- package/dist/epub/export.js +0 -698
- package/dist/epub/export.js.map +0 -1
- package/dist/epub/index.d.ts.map +0 -1
- package/dist/html/docsHtmlBundle.d.ts +0 -53
- package/dist/html/docsHtmlBundle.d.ts.map +0 -1
- package/dist/html/docsHtmlBundle.js +0 -299
- package/dist/html/docsHtmlBundle.js.map +0 -1
- package/dist/html/htmlTemplate.d.ts +0 -70
- package/dist/html/htmlTemplate.d.ts.map +0 -1
- package/dist/html/htmlTemplate.js +0 -282
- package/dist/html/htmlTemplate.js.map +0 -1
- package/dist/html/imageUtils.d.ts +0 -29
- package/dist/html/imageUtils.d.ts.map +0 -1
- package/dist/html/imageUtils.js +0 -63
- package/dist/html/imageUtils.js.map +0 -1
- package/dist/html/index.d.ts.map +0 -1
- package/dist/html/plainHtml.d.ts +0 -79
- package/dist/html/plainHtml.d.ts.map +0 -1
- package/dist/html/plainHtml.js +0 -614
- package/dist/html/plainHtml.js.map +0 -1
- package/dist/html/plainHtmlBundle.d.ts +0 -93
- package/dist/html/plainHtmlBundle.d.ts.map +0 -1
- package/dist/html/plainHtmlBundle.js +0 -357
- package/dist/html/plainHtmlBundle.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/ooxml/index.d.ts.map +0 -1
- package/dist/ooxml/namespaces.d.ts +0 -77
- package/dist/ooxml/namespaces.d.ts.map +0 -1
- package/dist/ooxml/namespaces.js +0 -104
- package/dist/ooxml/namespaces.js.map +0 -1
- package/dist/ooxml/reader.d.ts +0 -52
- package/dist/ooxml/reader.d.ts.map +0 -1
- package/dist/ooxml/reader.js +0 -190
- package/dist/ooxml/reader.js.map +0 -1
- package/dist/ooxml/types.d.ts +0 -82
- package/dist/ooxml/types.d.ts.map +0 -1
- package/dist/ooxml/types.js +0 -9
- package/dist/ooxml/types.js.map +0 -1
- package/dist/ooxml/writer.d.ts +0 -71
- package/dist/ooxml/writer.d.ts.map +0 -1
- package/dist/ooxml/writer.js +0 -200
- package/dist/ooxml/writer.js.map +0 -1
- package/dist/ooxml/xmlUtils.d.ts +0 -76
- package/dist/ooxml/xmlUtils.d.ts.map +0 -1
- package/dist/ooxml/xmlUtils.js +0 -108
- package/dist/ooxml/xmlUtils.js.map +0 -1
- package/dist/pdf/export.d.ts +0 -56
- package/dist/pdf/export.d.ts.map +0 -1
- package/dist/pdf/export.js +0 -768
- package/dist/pdf/export.js.map +0 -1
- package/dist/pdf/import.d.ts +0 -94
- package/dist/pdf/import.d.ts.map +0 -1
- package/dist/pdf/import.js +0 -796
- package/dist/pdf/import.js.map +0 -1
- package/dist/pdf/index.d.ts.map +0 -1
- package/dist/pdf/styles.d.ts +0 -142
- package/dist/pdf/styles.d.ts.map +0 -1
- package/dist/pdf/styles.js +0 -145
- package/dist/pdf/styles.js.map +0 -1
- package/dist/pptx/export.d.ts +0 -75
- package/dist/pptx/export.d.ts.map +0 -1
- package/dist/pptx/export.js +0 -724
- package/dist/pptx/export.js.map +0 -1
- package/dist/pptx/index.d.ts.map +0 -1
- package/dist/pptx/styles.d.ts +0 -54
- package/dist/pptx/styles.d.ts.map +0 -1
- package/dist/pptx/styles.js +0 -73
- package/dist/pptx/styles.js.map +0 -1
- package/dist/pptx/templates.d.ts +0 -24
- package/dist/pptx/templates.d.ts.map +0 -1
- package/dist/pptx/templates.js +0 -158
- package/dist/pptx/templates.js.map +0 -1
- package/dist/xlsx/index.d.ts.map +0 -1
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Recursive plain-HTML bundle export.
|
|
3
|
-
*
|
|
4
|
-
* `markdownDocsToPlainHtmlBundle` starts from a single entry markdown
|
|
5
|
-
* file, walks its relative `[…](other.md)` links, recursively pulls in
|
|
6
|
-
* any sibling/child documents (scope-limited to the entry doc's
|
|
7
|
-
* directory tree), renders every visited file via
|
|
8
|
-
* `markdownDocToPlainHtml`, rewrites cross-doc references from `.md`
|
|
9
|
-
* to `.html`, and ships everything as a single ZIP.
|
|
10
|
-
*
|
|
11
|
-
* The function is provider-agnostic — callers pass `readDocument` and
|
|
12
|
-
* `readBinary` callbacks that resolve relative paths against whatever
|
|
13
|
-
* storage they use (`FileSystemContentContainer`, `MemoryContent-
|
|
14
|
-
* Container`, in-memory map for tests, …). Failure to read any
|
|
15
|
-
* discovered file aborts the whole export with a thrown error.
|
|
16
|
-
*/
|
|
17
|
-
import type { MarkdownDocument } from '@bendyline/squisq/markdown';
|
|
18
|
-
import type { Theme } from '@bendyline/squisq/schemas';
|
|
19
|
-
export interface PlainHtmlBundleOptions {
|
|
20
|
-
/** Entry document path relative to the container root (e.g. `'home.md'`). */
|
|
21
|
-
entryPath: string;
|
|
22
|
-
/** Reads a UTF-8 markdown file from the container. Returns null when absent. */
|
|
23
|
-
readDocument: (path: string) => Promise<string | null>;
|
|
24
|
-
/** Reads a binary asset (image) from the container. Returns null when absent. */
|
|
25
|
-
readBinary: (path: string) => Promise<ArrayBuffer | null>;
|
|
26
|
-
/** Optional document title for the entry. Others derive from filename. */
|
|
27
|
-
title?: string;
|
|
28
|
-
/** Optional theme applied uniformly to every page. Overrides {@link themeId}. */
|
|
29
|
-
theme?: Theme;
|
|
30
|
-
/**
|
|
31
|
-
* Optional theme id (e.g. `'warm-earth'`, `'gezellig'`). Resolved via
|
|
32
|
-
* `resolveTheme` and applied to every page. Convenient for callers
|
|
33
|
-
* that track themes by id (like the host export dialog) without
|
|
34
|
-
* having to resolve to a `Theme` object first. When both `theme` and
|
|
35
|
-
* `themeId` are supplied, `theme` wins.
|
|
36
|
-
*/
|
|
37
|
-
themeId?: string;
|
|
38
|
-
/** Maximum recursion depth (default: unlimited; cycles always handled). */
|
|
39
|
-
maxDepth?: number;
|
|
40
|
-
/**
|
|
41
|
-
* Emit the entry doc as `index.html` (preserving its parent directory)
|
|
42
|
-
* instead of `<basename>.html`. Cross-doc links pointing at the entry
|
|
43
|
-
* also rewrite to `index.html`, so a sibling `resume.md → home.md`
|
|
44
|
-
* link doesn't 404 after the rename. Convenient for static-site
|
|
45
|
-
* deploys where the landing page must be named `index.html`.
|
|
46
|
-
* Default: false.
|
|
47
|
-
*/
|
|
48
|
-
entryAsIndex?: boolean;
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* Render an entry markdown document and every reachable sibling/child
|
|
52
|
-
* `.md` document it links to, bundled as a single ZIP with plain-HTML
|
|
53
|
-
* pages, per-document asset folders, and cross-doc `<a href>`
|
|
54
|
-
* references rewritten from `.md` to `.html`.
|
|
55
|
-
*/
|
|
56
|
-
export declare function markdownDocsToPlainHtmlBundle(options: PlainHtmlBundleOptions): Promise<Blob>;
|
|
57
|
-
/**
|
|
58
|
-
* Collect every `<a>`-style link URL referenced in a document. Markdown
|
|
59
|
-
* `link` nodes plus any raw HTML `<a href>` tags. Returns the raw URLs
|
|
60
|
-
* as authored, so callers can use them as both the linkMap *key* and
|
|
61
|
-
* the basis for resolution.
|
|
62
|
-
*/
|
|
63
|
-
export declare function collectLinkRefs(doc: MarkdownDocument): Set<string>;
|
|
64
|
-
/**
|
|
65
|
-
* Strip a path to its parent directory (POSIX-style). Returns `''`
|
|
66
|
-
* for root-level files so subsequent joins read like a fresh path.
|
|
67
|
-
*/
|
|
68
|
-
export declare function posixDirname(p: string): string;
|
|
69
|
-
/**
|
|
70
|
-
* Normalize a POSIX path: collapse `./`, resolve `..`, drop trailing
|
|
71
|
-
* slashes, never produce a leading `/`. Returns null when the path
|
|
72
|
-
* escapes the start ("..").
|
|
73
|
-
*/
|
|
74
|
-
export declare function normalizePath(p: string): string | null;
|
|
75
|
-
/**
|
|
76
|
-
* Resolve `rel` against `baseDir`. Returns null when the result
|
|
77
|
-
* escapes the container root via `..`.
|
|
78
|
-
*/
|
|
79
|
-
export declare function resolveRelative(baseDir: string, rel: string): string | null;
|
|
80
|
-
/**
|
|
81
|
-
* True when `target` is inside `root` (or equal to it). Empty root
|
|
82
|
-
* means "entire container is in scope".
|
|
83
|
-
*/
|
|
84
|
-
export declare function isInScope(target: string, root: string): boolean;
|
|
85
|
-
/**
|
|
86
|
-
* Compute a relative path from `fromDir` to `toPath` (both POSIX-
|
|
87
|
-
* normalized, container-relative). Used to emit hrefs that work after
|
|
88
|
-
* unzipping anywhere — `home.md → subfolder/notes.md` becomes
|
|
89
|
-
* `subfolder/notes.html`; `subfolder/intro.md → resume.md` becomes
|
|
90
|
-
* `../resume.html`.
|
|
91
|
-
*/
|
|
92
|
-
export declare function relativeFrom(fromDir: string, toPath: string): string;
|
|
93
|
-
//# sourceMappingURL=plainHtmlBundle.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plainHtmlBundle.d.ts","sourceRoot":"","sources":["../../src/html/plainHtmlBundle.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAIH,OAAO,KAAK,EAAE,gBAAgB,EAAY,MAAM,4BAA4B,CAAC;AAC7E,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAMvD,MAAM,WAAW,sBAAsB;IACrC,6EAA6E;IAC7E,SAAS,EAAE,MAAM,CAAC;IAClB,gFAAgF;IAChF,YAAY,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IACvD,iFAAiF;IACjF,UAAU,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IAC1D,0EAA0E;IAC1E,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,iFAAiF;IACjF,KAAK,CAAC,EAAE,KAAK,CAAC;IACd;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2EAA2E;IAC3E,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;;;;OAOG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAID;;;;;GAKG;AACH,wBAAsB,6BAA6B,CACjD,OAAO,EAAE,sBAAsB,GAC9B,OAAO,CAAC,IAAI,CAAC,CA+Gf;AAID;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,gBAAgB,GAAG,GAAG,CAAC,MAAM,CAAC,CA8BlE;AAuGD;;;GAGG;AACH,wBAAgB,YAAY,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAG9C;AAED;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAatD;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAI3E;AAED;;;GAGG;AACH,wBAAgB,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAG/D;AAED;;;;;;GAMG;AACH,wBAAgB,YAAY,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAgBpE"}
|
|
@@ -1,357 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Recursive plain-HTML bundle export.
|
|
3
|
-
*
|
|
4
|
-
* `markdownDocsToPlainHtmlBundle` starts from a single entry markdown
|
|
5
|
-
* file, walks its relative `[…](other.md)` links, recursively pulls in
|
|
6
|
-
* any sibling/child documents (scope-limited to the entry doc's
|
|
7
|
-
* directory tree), renders every visited file via
|
|
8
|
-
* `markdownDocToPlainHtml`, rewrites cross-doc references from `.md`
|
|
9
|
-
* to `.html`, and ships everything as a single ZIP.
|
|
10
|
-
*
|
|
11
|
-
* The function is provider-agnostic — callers pass `readDocument` and
|
|
12
|
-
* `readBinary` callbacks that resolve relative paths against whatever
|
|
13
|
-
* storage they use (`FileSystemContentContainer`, `MemoryContent-
|
|
14
|
-
* Container`, in-memory map for tests, …). Failure to read any
|
|
15
|
-
* discovered file aborts the whole export with a thrown error.
|
|
16
|
-
*/
|
|
17
|
-
import JSZip from 'jszip';
|
|
18
|
-
import { parseMarkdown, inferDocumentTitle } from '@bendyline/squisq/markdown';
|
|
19
|
-
import { resolveTheme } from '@bendyline/squisq/schemas';
|
|
20
|
-
import { markdownDocToPlainHtml } from './plainHtml.js';
|
|
21
|
-
// ── Public API ─────────────────────────────────────────────────────
|
|
22
|
-
/**
|
|
23
|
-
* Render an entry markdown document and every reachable sibling/child
|
|
24
|
-
* `.md` document it links to, bundled as a single ZIP with plain-HTML
|
|
25
|
-
* pages, per-document asset folders, and cross-doc `<a href>`
|
|
26
|
-
* references rewritten from `.md` to `.html`.
|
|
27
|
-
*/
|
|
28
|
-
export async function markdownDocsToPlainHtmlBundle(options) {
|
|
29
|
-
const { entryPath, readDocument, readBinary, title, theme, themeId, maxDepth = Infinity, entryAsIndex = false, } = options;
|
|
30
|
-
const resolvedTheme = theme ?? (themeId ? resolveTheme(themeId) : undefined);
|
|
31
|
-
const entry = normalizePath(entryPath);
|
|
32
|
-
if (!entry) {
|
|
33
|
-
throw new Error('markdownDocsToPlainHtmlBundle: entryPath is required');
|
|
34
|
-
}
|
|
35
|
-
const scopeRoot = posixDirname(entry); // '' for root-level files
|
|
36
|
-
// When `entryAsIndex`, the entry doc writes to `<entryDir>/index.html`
|
|
37
|
-
// and every cross-doc link pointing at it rewrites to that path too.
|
|
38
|
-
// Other docs keep the `<basename>.html` convention.
|
|
39
|
-
const entryHtmlPath = entryAsIndex
|
|
40
|
-
? scopeRoot
|
|
41
|
-
? `${scopeRoot}/index.html`
|
|
42
|
-
: 'index.html'
|
|
43
|
-
: entry.slice(0, -3) + '.html';
|
|
44
|
-
const htmlPathFor = (mdPath) => mdPath === entry ? entryHtmlPath : mdPath.slice(0, -3) + '.html';
|
|
45
|
-
const zip = new JSZip();
|
|
46
|
-
const visited = new Set();
|
|
47
|
-
const queue = [{ path: entry, depth: 0 }];
|
|
48
|
-
while (queue.length > 0) {
|
|
49
|
-
const { path, depth } = queue.shift();
|
|
50
|
-
if (visited.has(path))
|
|
51
|
-
continue;
|
|
52
|
-
visited.add(path);
|
|
53
|
-
const source = await readDocument(path);
|
|
54
|
-
if (source === null) {
|
|
55
|
-
throw new Error(`markdownDocsToPlainHtmlBundle: failed to read "${path}"`);
|
|
56
|
-
}
|
|
57
|
-
const mdDoc = parseMarkdown(source);
|
|
58
|
-
// Discover this doc's relative .md links — both for enqueueing new
|
|
59
|
-
// targets and for building the per-doc link rewrite map. We resolve
|
|
60
|
-
// each link to a canonical container-relative path so the same doc
|
|
61
|
-
// referenced two different ways (./resume.md vs resume.md) is
|
|
62
|
-
// visited once and rewritten consistently.
|
|
63
|
-
const docDir = posixDirname(path);
|
|
64
|
-
const linkMap = new Map();
|
|
65
|
-
for (const raw of collectLinkRefs(mdDoc)) {
|
|
66
|
-
const parsed = parseLinkRef(raw);
|
|
67
|
-
if (!parsed)
|
|
68
|
-
continue;
|
|
69
|
-
const resolved = resolveRelative(docDir, parsed.path);
|
|
70
|
-
if (resolved === null)
|
|
71
|
-
continue; // escaped via ..
|
|
72
|
-
if (!isInScope(resolved, scopeRoot))
|
|
73
|
-
continue;
|
|
74
|
-
if (!resolved.toLowerCase().endsWith('.md'))
|
|
75
|
-
continue;
|
|
76
|
-
// Compute the .html replacement relative to the current doc so
|
|
77
|
-
// the rewritten href stays local (e.g. `subdir/notes.html`, not
|
|
78
|
-
// an absolute container path). `htmlPathFor` also handles the
|
|
79
|
-
// entry-as-index case so a sibling linking to the entry lands
|
|
80
|
-
// on `index.html` after rename.
|
|
81
|
-
const htmlTarget = htmlPathFor(resolved);
|
|
82
|
-
const relHref = relativeFrom(docDir, htmlTarget) + parsed.fragment;
|
|
83
|
-
linkMap.set(raw, relHref);
|
|
84
|
-
if (depth + 1 <= maxDepth && !visited.has(resolved)) {
|
|
85
|
-
queue.push({ path: resolved, depth: depth + 1 });
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
// Walk images, fetch each one, write at the original relative path
|
|
89
|
-
// resolved against the container root (so `resume_files/hero.png`
|
|
90
|
-
// sits next to `resume.html` in the zip). Failures here are *not*
|
|
91
|
-
// fatal — images can be missing without breaking the document
|
|
92
|
-
// structure — but we surface them as console warnings.
|
|
93
|
-
const images = await readImagesForDoc(mdDoc, docDir, readBinary);
|
|
94
|
-
for (const [, { data, zipPath }] of images) {
|
|
95
|
-
const safe = sanitizeZipPath(zipPath);
|
|
96
|
-
if (!safe)
|
|
97
|
-
continue;
|
|
98
|
-
zip.file(safe, data);
|
|
99
|
-
}
|
|
100
|
-
// Render the document. The image rewrite map keys are the URLs
|
|
101
|
-
// exactly as authored (so `markdownDocToPlainHtml` can match them
|
|
102
|
-
// verbatim), and the values are paths relative to the rendered
|
|
103
|
-
// doc's own location — so `<img src>` works after unzip without
|
|
104
|
-
// any post-processing.
|
|
105
|
-
const imageRewriteMap = new Map();
|
|
106
|
-
for (const [authored, { zipPath }] of images) {
|
|
107
|
-
imageRewriteMap.set(authored, relativeFrom(docDir, zipPath));
|
|
108
|
-
}
|
|
109
|
-
const docTitle = depth === 0 ? title : undefined;
|
|
110
|
-
const html = markdownDocToPlainHtml(mdDoc, {
|
|
111
|
-
title: docTitle ?? titleForFilename(path, mdDoc),
|
|
112
|
-
images: imageRewriteMap,
|
|
113
|
-
links: linkMap,
|
|
114
|
-
theme: resolvedTheme,
|
|
115
|
-
});
|
|
116
|
-
const htmlPath = htmlPathFor(path);
|
|
117
|
-
zip.file(htmlPath, html);
|
|
118
|
-
}
|
|
119
|
-
return zip.generateAsync({
|
|
120
|
-
type: 'blob',
|
|
121
|
-
compression: 'DEFLATE',
|
|
122
|
-
compressionOptions: { level: 6 },
|
|
123
|
-
});
|
|
124
|
-
}
|
|
125
|
-
// ── Link discovery ─────────────────────────────────────────────────
|
|
126
|
-
/**
|
|
127
|
-
* Collect every `<a>`-style link URL referenced in a document. Markdown
|
|
128
|
-
* `link` nodes plus any raw HTML `<a href>` tags. Returns the raw URLs
|
|
129
|
-
* as authored, so callers can use them as both the linkMap *key* and
|
|
130
|
-
* the basis for resolution.
|
|
131
|
-
*/
|
|
132
|
-
export function collectLinkRefs(doc) {
|
|
133
|
-
const refs = new Set();
|
|
134
|
-
function visitHtml(nodes) {
|
|
135
|
-
for (const n of nodes) {
|
|
136
|
-
if (n.type !== 'htmlElement')
|
|
137
|
-
continue;
|
|
138
|
-
if (n.tagName.toLowerCase() === 'a') {
|
|
139
|
-
const href = n.attributes.href;
|
|
140
|
-
if (typeof href === 'string' && href)
|
|
141
|
-
refs.add(href);
|
|
142
|
-
}
|
|
143
|
-
visitHtml(n.children);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
function visit(node) {
|
|
147
|
-
if (!node || typeof node !== 'object')
|
|
148
|
-
return;
|
|
149
|
-
const n = node;
|
|
150
|
-
if (n.type === 'link' && typeof n.url === 'string' && n.url) {
|
|
151
|
-
refs.add(n.url);
|
|
152
|
-
}
|
|
153
|
-
if ((n.type === 'htmlBlock' || n.type === 'htmlInline') && Array.isArray(n.htmlChildren)) {
|
|
154
|
-
visitHtml(n.htmlChildren);
|
|
155
|
-
}
|
|
156
|
-
if (Array.isArray(n.children)) {
|
|
157
|
-
for (const child of n.children)
|
|
158
|
-
visit(child);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
for (const child of doc.children)
|
|
162
|
-
visit(child);
|
|
163
|
-
return refs;
|
|
164
|
-
}
|
|
165
|
-
function collectImageRefs(doc) {
|
|
166
|
-
const refs = new Set();
|
|
167
|
-
function visitHtml(nodes) {
|
|
168
|
-
for (const n of nodes) {
|
|
169
|
-
if (n.type !== 'htmlElement')
|
|
170
|
-
continue;
|
|
171
|
-
const tag = n.tagName.toLowerCase();
|
|
172
|
-
// <img>/<video>/<audio>/<source> all reference media via `src`;
|
|
173
|
-
// we feed them into the same `images` map (effectively a generic
|
|
174
|
-
// media map — see header comment) so the export pipeline rewrites
|
|
175
|
-
// and bundles each one the same way.
|
|
176
|
-
if (tag === 'img' || tag === 'video' || tag === 'audio' || tag === 'source') {
|
|
177
|
-
const src = n.attributes.src;
|
|
178
|
-
if (typeof src === 'string' && src)
|
|
179
|
-
refs.add(src);
|
|
180
|
-
}
|
|
181
|
-
if (tag === 'video' || tag === 'audio') {
|
|
182
|
-
const poster = n.attributes.poster;
|
|
183
|
-
if (typeof poster === 'string' && poster)
|
|
184
|
-
refs.add(poster);
|
|
185
|
-
}
|
|
186
|
-
visitHtml(n.children);
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
function visit(node) {
|
|
190
|
-
if (!node || typeof node !== 'object')
|
|
191
|
-
return;
|
|
192
|
-
const n = node;
|
|
193
|
-
if (n.type === 'image' && typeof n.url === 'string' && n.url)
|
|
194
|
-
refs.add(n.url);
|
|
195
|
-
if ((n.type === 'htmlBlock' || n.type === 'htmlInline') && Array.isArray(n.htmlChildren)) {
|
|
196
|
-
visitHtml(n.htmlChildren);
|
|
197
|
-
}
|
|
198
|
-
if (Array.isArray(n.children))
|
|
199
|
-
for (const c of n.children)
|
|
200
|
-
visit(c);
|
|
201
|
-
}
|
|
202
|
-
for (const child of doc.children)
|
|
203
|
-
visit(child);
|
|
204
|
-
return refs;
|
|
205
|
-
}
|
|
206
|
-
/**
|
|
207
|
-
* Split an authored URL into path + fragment, returning null for
|
|
208
|
-
* external / non-document references (http(s), mailto, data, blob,
|
|
209
|
-
* absolute paths, fragment-only). The fragment is preserved so a
|
|
210
|
-
* link like `resume.md#experience` rewrites cleanly to
|
|
211
|
-
* `resume.html#experience`.
|
|
212
|
-
*/
|
|
213
|
-
function parseLinkRef(url) {
|
|
214
|
-
if (!url)
|
|
215
|
-
return null;
|
|
216
|
-
if (url.startsWith('#'))
|
|
217
|
-
return null; // intra-doc anchor
|
|
218
|
-
if (/^[a-z][a-z0-9+.-]*:/.test(url) || // http:, https:, mailto:, ftp:, …
|
|
219
|
-
url.startsWith('//') ||
|
|
220
|
-
url.startsWith('/')) {
|
|
221
|
-
return null;
|
|
222
|
-
}
|
|
223
|
-
const hashIdx = url.indexOf('#');
|
|
224
|
-
const queryIdx = url.indexOf('?');
|
|
225
|
-
const cut = hashIdx >= 0 && queryIdx >= 0 ? Math.min(hashIdx, queryIdx) : hashIdx >= 0 ? hashIdx : queryIdx;
|
|
226
|
-
const path = cut >= 0 ? url.slice(0, cut) : url;
|
|
227
|
-
const fragment = hashIdx >= 0 ? url.slice(hashIdx) : '';
|
|
228
|
-
return { path, fragment };
|
|
229
|
-
}
|
|
230
|
-
// ── Image gathering ────────────────────────────────────────────────
|
|
231
|
-
/**
|
|
232
|
-
* Resolve every image referenced by a document to container-relative
|
|
233
|
-
* paths and fetch their bytes. The returned map keys are the authored
|
|
234
|
-
* URLs (so the renderer's `images` map can substitute them); the values
|
|
235
|
-
* are tuples of `[bytes, zipPath]` where `zipPath` is the path used
|
|
236
|
-
* inside the zip.
|
|
237
|
-
*
|
|
238
|
-
* Images that can't be read are silently dropped — the rendered HTML
|
|
239
|
-
* will keep its `<img src>` pointing at the authored URL, which a
|
|
240
|
-
* reader's browser will 404. That matches the user-facing "abort on
|
|
241
|
-
* missing linked doc" rule which applies to `.md` links only.
|
|
242
|
-
*/
|
|
243
|
-
async function readImagesForDoc(mdDoc, docDir, readBinary) {
|
|
244
|
-
const out = new Map();
|
|
245
|
-
for (const authored of collectImageRefs(mdDoc)) {
|
|
246
|
-
if (/^[a-z][a-z0-9+.-]*:/.test(authored) || authored.startsWith('//'))
|
|
247
|
-
continue;
|
|
248
|
-
const cleanAuthored = authored.replace(/[#?].*$/, '');
|
|
249
|
-
const resolved = resolveRelative(docDir, cleanAuthored);
|
|
250
|
-
if (resolved === null)
|
|
251
|
-
continue;
|
|
252
|
-
const data = await readBinary(resolved);
|
|
253
|
-
if (!data)
|
|
254
|
-
continue;
|
|
255
|
-
out.set(authored, { data, zipPath: resolved });
|
|
256
|
-
}
|
|
257
|
-
return out;
|
|
258
|
-
}
|
|
259
|
-
// ── Path helpers (POSIX-style, no Node `path`) ─────────────────────
|
|
260
|
-
/**
|
|
261
|
-
* Strip a path to its parent directory (POSIX-style). Returns `''`
|
|
262
|
-
* for root-level files so subsequent joins read like a fresh path.
|
|
263
|
-
*/
|
|
264
|
-
export function posixDirname(p) {
|
|
265
|
-
const idx = p.lastIndexOf('/');
|
|
266
|
-
return idx < 0 ? '' : p.slice(0, idx);
|
|
267
|
-
}
|
|
268
|
-
/**
|
|
269
|
-
* Normalize a POSIX path: collapse `./`, resolve `..`, drop trailing
|
|
270
|
-
* slashes, never produce a leading `/`. Returns null when the path
|
|
271
|
-
* escapes the start ("..").
|
|
272
|
-
*/
|
|
273
|
-
export function normalizePath(p) {
|
|
274
|
-
const parts = p.split('/');
|
|
275
|
-
const out = [];
|
|
276
|
-
for (const segment of parts) {
|
|
277
|
-
if (segment === '' || segment === '.')
|
|
278
|
-
continue;
|
|
279
|
-
if (segment === '..') {
|
|
280
|
-
if (out.length === 0)
|
|
281
|
-
return null;
|
|
282
|
-
out.pop();
|
|
283
|
-
continue;
|
|
284
|
-
}
|
|
285
|
-
out.push(segment);
|
|
286
|
-
}
|
|
287
|
-
return out.join('/');
|
|
288
|
-
}
|
|
289
|
-
/**
|
|
290
|
-
* Resolve `rel` against `baseDir`. Returns null when the result
|
|
291
|
-
* escapes the container root via `..`.
|
|
292
|
-
*/
|
|
293
|
-
export function resolveRelative(baseDir, rel) {
|
|
294
|
-
if (rel.startsWith('/'))
|
|
295
|
-
return null; // absolute paths are out of scope
|
|
296
|
-
const joined = baseDir ? `${baseDir}/${rel}` : rel;
|
|
297
|
-
return normalizePath(joined);
|
|
298
|
-
}
|
|
299
|
-
/**
|
|
300
|
-
* True when `target` is inside `root` (or equal to it). Empty root
|
|
301
|
-
* means "entire container is in scope".
|
|
302
|
-
*/
|
|
303
|
-
export function isInScope(target, root) {
|
|
304
|
-
if (!root)
|
|
305
|
-
return true;
|
|
306
|
-
return target === root || target.startsWith(root + '/');
|
|
307
|
-
}
|
|
308
|
-
/**
|
|
309
|
-
* Compute a relative path from `fromDir` to `toPath` (both POSIX-
|
|
310
|
-
* normalized, container-relative). Used to emit hrefs that work after
|
|
311
|
-
* unzipping anywhere — `home.md → subfolder/notes.md` becomes
|
|
312
|
-
* `subfolder/notes.html`; `subfolder/intro.md → resume.md` becomes
|
|
313
|
-
* `../resume.html`.
|
|
314
|
-
*/
|
|
315
|
-
export function relativeFrom(fromDir, toPath) {
|
|
316
|
-
const fromParts = fromDir ? fromDir.split('/') : [];
|
|
317
|
-
const toParts = toPath.split('/');
|
|
318
|
-
let common = 0;
|
|
319
|
-
while (common < fromParts.length &&
|
|
320
|
-
common < toParts.length - 1 &&
|
|
321
|
-
fromParts[common] === toParts[common]) {
|
|
322
|
-
common++;
|
|
323
|
-
}
|
|
324
|
-
const up = fromParts.length - common;
|
|
325
|
-
const down = toParts.slice(common);
|
|
326
|
-
const prefix = Array(up).fill('..').join('/');
|
|
327
|
-
if (!prefix)
|
|
328
|
-
return down.join('/');
|
|
329
|
-
return `${prefix}/${down.join('/')}`;
|
|
330
|
-
}
|
|
331
|
-
/**
|
|
332
|
-
* Sanitize a path for use as a zip entry. Strips leading slashes,
|
|
333
|
-
* normalizes backslashes (Windows-authored paths), and rejects any
|
|
334
|
-
* path containing `..` segments after normalization (defensive — the
|
|
335
|
-
* resolver above already filters those out for links).
|
|
336
|
-
*/
|
|
337
|
-
function sanitizeZipPath(path) {
|
|
338
|
-
const normalized = path.replace(/\\/g, '/').replace(/^\/+/, '');
|
|
339
|
-
if (!normalized)
|
|
340
|
-
return null;
|
|
341
|
-
if (normalized.split('/').some((seg) => seg === '..'))
|
|
342
|
-
return null;
|
|
343
|
-
return normalized;
|
|
344
|
-
}
|
|
345
|
-
/**
|
|
346
|
-
* Derive a default page title for a non-entry doc: prefer frontmatter
|
|
347
|
-
* `title`, fall back to the shallowest heading text, then the filename
|
|
348
|
-
* without extension.
|
|
349
|
-
*/
|
|
350
|
-
function titleForFilename(path, mdDoc) {
|
|
351
|
-
const inferred = inferDocumentTitle(mdDoc);
|
|
352
|
-
if (inferred)
|
|
353
|
-
return inferred;
|
|
354
|
-
const base = path.split('/').pop() ?? path;
|
|
355
|
-
return base.replace(/\.md$/i, '');
|
|
356
|
-
}
|
|
357
|
-
//# sourceMappingURL=plainHtmlBundle.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plainHtmlBundle.js","sourceRoot":"","sources":["../../src/html/plainHtmlBundle.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AAGH,OAAO,EAAE,iBAAiB,EAAE,SAAS,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC7F,YAAY,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAG5E,OAAO,EAAE,iBAAiB,EAAE,SAAS,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC7F,YAAY,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAG5E,OAAO,EAAE,iBAAiB,EAAE,SAAS,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC7F,YAAY,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAG5E,OAAO,EACL,gBAAgB,EAChB,QAAQ,EACR,gBAAgB,EAChB,QAAQ,EACR,kBAAkB,GACnB,MAAM,gBAAgB,CAAC;AACxB,YAAY,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAGzE,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AAC7E,YAAY,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAG/E,OAAO,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC/D,YAAY,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ooxml/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,YAAY,EACV,YAAY,EACZ,cAAc,EACd,YAAY,EACZ,cAAc,EACd,WAAW,EACX,mBAAmB,GACpB,MAAM,YAAY,CAAC;AAGpB,OAAO,EACL,WAAW,EACX,oBAAoB,EACpB,UAAU,EACV,aAAa,EACb,iBAAiB,GAClB,MAAM,aAAa,CAAC;AAGrB,YAAY,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAG5C,OAAO,EACL,cAAc,EACd,SAAS,EACT,UAAU,EACV,kBAAkB,EAClB,UAAU,EACV,WAAW,GACZ,MAAM,eAAe,CAAC;AAGvB,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,EACnB,uBAAuB,EACvB,UAAU,EACV,aAAa,EACb,cAAc,EACd,YAAY,EACZ,aAAa,EACb,SAAS,EACT,aAAa,EACb,SAAS,EACT,MAAM,EACN,MAAM,EACN,MAAM,EACN,YAAY,EACZ,aAAa,EACb,UAAU,EACV,KAAK,EACL,UAAU,EACV,kBAAkB,EAClB,MAAM,EACN,KAAK,EACL,IAAI,EACJ,0BAA0B,EAC1B,4BAA4B,EAC5B,0BAA0B,EAC1B,wBAAwB,EACxB,2BAA2B,EAC3B,0BAA0B,EAC1B,4BAA4B,EAC5B,2BAA2B,EAC3B,8BAA8B,EAC9B,uBAAuB,EACvB,8BAA8B,EAC9B,8BAA8B,EAC9B,uBAAuB,EACvB,SAAS,EACT,gBAAgB,EAChB,gBAAgB,EAChB,0BAA0B,GAC3B,MAAM,iBAAiB,CAAC"}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* OOXML Namespace Constants
|
|
3
|
-
*
|
|
4
|
-
* All Office Open XML namespace URIs used across DOCX, PPTX, and XLSX.
|
|
5
|
-
* Organized by category for easy reference.
|
|
6
|
-
*/
|
|
7
|
-
/** Relationships namespace (used in _rels/*.rels files) */
|
|
8
|
-
export declare const NS_RELATIONSHIPS = "http://schemas.openxmlformats.org/package/2006/relationships";
|
|
9
|
-
/** Content Types namespace ([Content_Types].xml) */
|
|
10
|
-
export declare const NS_CONTENT_TYPES = "http://schemas.openxmlformats.org/package/2006/content-types";
|
|
11
|
-
/** Relationship type: Office document (main part) */
|
|
12
|
-
export declare const REL_OFFICE_DOCUMENT = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument";
|
|
13
|
-
/** Relationship type: Core properties */
|
|
14
|
-
export declare const REL_CORE_PROPERTIES = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties";
|
|
15
|
-
/** Relationship type: Extended properties (app.xml) */
|
|
16
|
-
export declare const REL_EXTENDED_PROPERTIES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties";
|
|
17
|
-
/** Relationship type: Styles */
|
|
18
|
-
export declare const REL_STYLES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles";
|
|
19
|
-
/** Relationship type: Numbering */
|
|
20
|
-
export declare const REL_NUMBERING = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering";
|
|
21
|
-
/** Relationship type: Font table */
|
|
22
|
-
export declare const REL_FONT_TABLE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable";
|
|
23
|
-
/** Relationship type: Settings */
|
|
24
|
-
export declare const REL_SETTINGS = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings";
|
|
25
|
-
/** Relationship type: Hyperlink */
|
|
26
|
-
export declare const REL_HYPERLINK = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink";
|
|
27
|
-
/** Relationship type: Image */
|
|
28
|
-
export declare const REL_IMAGE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image";
|
|
29
|
-
/** Relationship type: Footnotes */
|
|
30
|
-
export declare const REL_FOOTNOTES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes";
|
|
31
|
-
/** Relationship type: Theme */
|
|
32
|
-
export declare const REL_THEME = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme";
|
|
33
|
-
/** WordprocessingML main namespace (w:) */
|
|
34
|
-
export declare const NS_WML = "http://schemas.openxmlformats.org/wordprocessingml/2006/main";
|
|
35
|
-
/** PresentationML main namespace (p:) */
|
|
36
|
-
export declare const NS_PML = "http://schemas.openxmlformats.org/presentationml/2006/main";
|
|
37
|
-
/** SpreadsheetML main namespace */
|
|
38
|
-
export declare const NS_SML = "http://schemas.openxmlformats.org/spreadsheetml/2006/main";
|
|
39
|
-
/** DrawingML main namespace (a:) */
|
|
40
|
-
export declare const NS_DRAWINGML = "http://schemas.openxmlformats.org/drawingml/2006/main";
|
|
41
|
-
/** DrawingML WordprocessingML drawing namespace (wp:) */
|
|
42
|
-
export declare const NS_WP_DRAWING = "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing";
|
|
43
|
-
/** DrawingML picture namespace (pic:) */
|
|
44
|
-
export declare const NS_PICTURE = "http://schemas.openxmlformats.org/drawingml/2006/picture";
|
|
45
|
-
/** Dublin Core elements namespace */
|
|
46
|
-
export declare const NS_DC = "http://purl.org/dc/elements/1.1/";
|
|
47
|
-
/** Dublin Core terms namespace */
|
|
48
|
-
export declare const NS_DCTERMS = "http://purl.org/dc/terms/";
|
|
49
|
-
/** Core properties namespace */
|
|
50
|
-
export declare const NS_CORE_PROPERTIES = "http://schemas.openxmlformats.org/package/2006/metadata/core-properties";
|
|
51
|
-
/** XML Schema Instance namespace */
|
|
52
|
-
export declare const NS_XSI = "http://www.w3.org/2001/XMLSchema-instance";
|
|
53
|
-
/** Markup Compatibility namespace (mc:) */
|
|
54
|
-
export declare const NS_MC = "http://schemas.openxmlformats.org/markup-compatibility/2006";
|
|
55
|
-
/** Office relationships namespace (r:) */
|
|
56
|
-
export declare const NS_R = "http://schemas.openxmlformats.org/officeDocument/2006/relationships";
|
|
57
|
-
export declare const CONTENT_TYPE_RELATIONSHIPS = "application/vnd.openxmlformats-package.relationships+xml";
|
|
58
|
-
export declare const CONTENT_TYPE_CORE_PROPERTIES = "application/vnd.openxmlformats-package.core-properties+xml";
|
|
59
|
-
export declare const CONTENT_TYPE_DOCX_DOCUMENT = "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml";
|
|
60
|
-
export declare const CONTENT_TYPE_DOCX_STYLES = "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml";
|
|
61
|
-
export declare const CONTENT_TYPE_DOCX_NUMBERING = "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml";
|
|
62
|
-
export declare const CONTENT_TYPE_DOCX_SETTINGS = "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml";
|
|
63
|
-
export declare const CONTENT_TYPE_DOCX_FONT_TABLE = "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml";
|
|
64
|
-
export declare const CONTENT_TYPE_DOCX_FOOTNOTES = "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml";
|
|
65
|
-
export declare const CONTENT_TYPE_PPTX_PRESENTATION = "application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml";
|
|
66
|
-
export declare const CONTENT_TYPE_PPTX_SLIDE = "application/vnd.openxmlformats-officedocument.presentationml.slide+xml";
|
|
67
|
-
export declare const CONTENT_TYPE_PPTX_SLIDE_LAYOUT = "application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml";
|
|
68
|
-
export declare const CONTENT_TYPE_PPTX_SLIDE_MASTER = "application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml";
|
|
69
|
-
export declare const CONTENT_TYPE_PPTX_THEME = "application/vnd.openxmlformats-officedocument.theme+xml";
|
|
70
|
-
/** Relationship type: Slide */
|
|
71
|
-
export declare const REL_SLIDE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide";
|
|
72
|
-
/** Relationship type: Slide layout */
|
|
73
|
-
export declare const REL_SLIDE_LAYOUT = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout";
|
|
74
|
-
/** Relationship type: Slide master */
|
|
75
|
-
export declare const REL_SLIDE_MASTER = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideMaster";
|
|
76
|
-
export declare const CONTENT_TYPE_XLSX_WORKBOOK = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml";
|
|
77
|
-
//# sourceMappingURL=namespaces.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"namespaces.d.ts","sourceRoot":"","sources":["../../src/ooxml/namespaces.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAMH,2DAA2D;AAC3D,eAAO,MAAM,gBAAgB,iEAAiE,CAAC;AAE/F,oDAAoD;AACpD,eAAO,MAAM,gBAAgB,iEAAiE,CAAC;AAM/F,qDAAqD;AACrD,eAAO,MAAM,mBAAmB,uFACsD,CAAC;AAEvF,yCAAyC;AACzC,eAAO,MAAM,mBAAmB,0FACyD,CAAC;AAE1F,uDAAuD;AACvD,eAAO,MAAM,uBAAuB,4FACuD,CAAC;AAE5F,gCAAgC;AAChC,eAAO,MAAM,UAAU,+EACuD,CAAC;AAE/E,mCAAmC;AACnC,eAAO,MAAM,aAAa,kFACuD,CAAC;AAElF,oCAAoC;AACpC,eAAO,MAAM,cAAc,kFACsD,CAAC;AAElF,kCAAkC;AAClC,eAAO,MAAM,YAAY,iFACuD,CAAC;AAEjF,mCAAmC;AACnC,eAAO,MAAM,aAAa,kFACuD,CAAC;AAElF,+BAA+B;AAC/B,eAAO,MAAM,SAAS,8EACuD,CAAC;AAE9E,mCAAmC;AACnC,eAAO,MAAM,aAAa,kFACuD,CAAC;AAElF,+BAA+B;AAC/B,eAAO,MAAM,SAAS,8EACuD,CAAC;AAM9E,2CAA2C;AAC3C,eAAO,MAAM,MAAM,iEAAiE,CAAC;AAMrF,yCAAyC;AACzC,eAAO,MAAM,MAAM,+DAA+D,CAAC;AAMnF,mCAAmC;AACnC,eAAO,MAAM,MAAM,8DAA8D,CAAC;AAMlF,oCAAoC;AACpC,eAAO,MAAM,YAAY,0DAA0D,CAAC;AAEpF,yDAAyD;AACzD,eAAO,MAAM,aAAa,2EACgD,CAAC;AAE3E,yCAAyC;AACzC,eAAO,MAAM,UAAU,6DAA6D,CAAC;AAMrF,qCAAqC;AACrC,eAAO,MAAM,KAAK,qCAAqC,CAAC;AAExD,kCAAkC;AAClC,eAAO,MAAM,UAAU,8BAA8B,CAAC;AAEtD,gCAAgC;AAChC,eAAO,MAAM,kBAAkB,4EAC4C,CAAC;AAE5E,oCAAoC;AACpC,eAAO,MAAM,MAAM,8CAA8C,CAAC;AAMlE,2CAA2C;AAC3C,eAAO,MAAM,KAAK,gEAAgE,CAAC;AAEnF,0CAA0C;AAC1C,eAAO,MAAM,IAAI,wEAAwE,CAAC;AAM1F,eAAO,MAAM,0BAA0B,6DACqB,CAAC;AAE7D,eAAO,MAAM,4BAA4B,+DACqB,CAAC;AAE/D,eAAO,MAAM,0BAA0B,qFAC6C,CAAC;AAErF,eAAO,MAAM,wBAAwB,8EACwC,CAAC;AAE9E,eAAO,MAAM,2BAA2B,iFACwC,CAAC;AAEjF,eAAO,MAAM,0BAA0B,gFACwC,CAAC;AAEhF,eAAO,MAAM,4BAA4B,iFACuC,CAAC;AAEjF,eAAO,MAAM,2BAA2B,iFACwC,CAAC;AAEjF,eAAO,MAAM,8BAA8B,uFAC2C,CAAC;AAEvF,eAAO,MAAM,uBAAuB,2EACsC,CAAC;AAE3E,eAAO,MAAM,8BAA8B,iFACqC,CAAC;AAEjF,eAAO,MAAM,8BAA8B,iFACqC,CAAC;AAEjF,eAAO,MAAM,uBAAuB,4DAA4D,CAAC;AAEjG,+BAA+B;AAC/B,eAAO,MAAM,SAAS,8EACuD,CAAC;AAE9E,sCAAsC;AACtC,eAAO,MAAM,gBAAgB,oFACsD,CAAC;AAEpF,sCAAsC;AACtC,eAAO,MAAM,gBAAgB,oFACsD,CAAC;AAEpF,eAAO,MAAM,0BAA0B,+EACuC,CAAC"}
|