You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: devtools/packages/prebuild-options/tasks/generate-docs.ts
+4-2
Original file line number
Diff line number
Diff line change
@@ -26,10 +26,12 @@ asIndexPage: true
26
26
27
27
outputPage.push(`import { Callout } from 'nextra/components';`);
28
28
29
-
outputPage.push('# Options');
29
+
outputPage.push('# Plugin Options');
30
30
if(docsConfig.docsPath==='/docs'){
31
31
outputPage.push(
32
-
`<Callout type="info">These options should be used in conjunction with the core TypeDoc options (see [TypeDoc Usage](/docs/typedoc-usage)).</Callout>`,
32
+
`This page documents additional options that are exposed by this plugin.
33
+
34
+
*Note: The options must be set at root level and will be ignored inside [packageOptions](https://typedoc.org/documents/Options.Package_Options.html).*`,
Copy file name to clipboardExpand all lines: docs/content/docs/CHANGELOG.md
+13
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# Changelog
2
2
3
+
## 4.5.2
4
+
5
+
### Patch Changes
6
+
7
+
- Ensure all file paths use forward slashes in windows ([#782](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/782)).
8
+
9
+
## 4.5.1 (2025-03-18)
10
+
11
+
### Patch Changes
12
+
13
+
- Correctly handle package index paths ([#782](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/782)).
14
+
- Make all options optional in PluginOptions interface ([#781](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/781)).
15
+
3
16
## 4.5.0 (2025-03-16)
4
17
5
18
This release introduces support for [TypeDoc 0.28](https://github.com/TypeStrong/typedoc/blob/v0.28.0/CHANGELOG.md#v0280-2025-03-15) that contains several under-the-hood breaking API changes.
You can inform your IDE about the shape of the exported options the plugin provides.
6
+
7
+
## JSON Files
8
+
9
+
You can utilize the provided JSON schema at https://typedoc-plugin-markdown.org/schema.json. For simplicity of configuration, this schema consolidates all options from TypeDoc and the plugin.
0 commit comments