@ox-content/vite-plugin 2.28.0 → 2.29.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/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -0
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +11 -0
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -661,7 +661,8 @@ function generateMarkdown(docs, options) {
|
|
|
661
661
|
githubUrl: options.githubUrl,
|
|
662
662
|
linkStyle: options.linkStyle,
|
|
663
663
|
basePath: options.basePath,
|
|
664
|
-
pathStrategy: options.pathStrategy
|
|
664
|
+
pathStrategy: options.pathStrategy,
|
|
665
|
+
renderStyle: options.renderStyle
|
|
665
666
|
});
|
|
666
667
|
}
|
|
667
668
|
/**
|
|
@@ -724,6 +725,7 @@ function resolveDocsOptions(options) {
|
|
|
724
725
|
linkStyle: opts.linkStyle ?? "markdown",
|
|
725
726
|
basePath: opts.basePath,
|
|
726
727
|
pathStrategy: opts.pathStrategy ?? "flat",
|
|
728
|
+
renderStyle: opts.renderStyle ?? "html",
|
|
727
729
|
generateNav: opts.generateNav ?? true
|
|
728
730
|
};
|
|
729
731
|
}
|