Skip to content

Commit

Permalink
chore(docs): updated changelog date
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed Jul 5, 2024
1 parent f90fcf7 commit 337e060
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 49 deletions.
4 changes: 2 additions & 2 deletions docs/pages/docs/options/display-options.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Callout, FileTree } from "nextra/components";
import { Callout, FileTree } from 'nextra/components';

# Display Options

Expand Down Expand Up @@ -136,7 +136,7 @@ Use this option to preserve the position of the tag content with the comment sum

<Callout emoji="💡">Sets the format of index items.</Callout>

> Accepts one of `"list"` | `"table"` | `"htmlTable"`. Defaults to `"list"`.
> Accepts one of `"list"` | `"table"`. Defaults to `"list"`.
This option renders index items either as a simple unordered list or in a table.

Expand Down
55 changes: 10 additions & 45 deletions docs/public/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@
},
"classPropertiesFormat": {
"type": "string",
"enum": [
"list",
"table",
"htmlTable"
],
"enum": ["list", "table", "htmlTable"],
"description": "[typedoc-plugin-markdown] Sets the format of property groups for classes.",
"default": "list"
},
Expand All @@ -40,11 +36,7 @@
},
"enumMembersFormat": {
"type": "string",
"enum": [
"list",
"table",
"htmlTable"
],
"enum": ["list", "table", "htmlTable"],
"description": "[typedoc-plugin-markdown] Sets the format of enumeration members.",
"default": "list"
},
Expand Down Expand Up @@ -92,21 +84,13 @@
},
"indexFormat": {
"type": "string",
"enum": [
"list",
"table",
"htmlTable"
],
"enum": ["list", "table"],
"description": "[typedoc-plugin-markdown] Sets the format of index items.",
"default": "list"
},
"interfacePropertiesFormat": {
"type": "string",
"enum": [
"list",
"table",
"htmlTable"
],
"enum": ["list", "table", "htmlTable"],
"description": "[typedoc-plugin-markdown] Sets the format of property groups for interfaces.",
"default": "list"
},
Expand Down Expand Up @@ -159,20 +143,13 @@
},
"outputFileStrategy": {
"type": "string",
"enum": [
"members",
"modules"
],
"enum": ["members", "modules"],
"description": "[typedoc-plugin-markdown] Determines how output files are generated.",
"default": "members"
},
"parametersFormat": {
"type": "string",
"enum": [
"list",
"table",
"htmlTable"
],
"enum": ["list", "table", "htmlTable"],
"description": "[typedoc-plugin-markdown] Sets the format of parameter and type parameter groups.",
"default": "list"
},
Expand All @@ -182,21 +159,13 @@
},
"propertiesFormat": {
"type": "string",
"enum": [
"list",
"table",
"htmlTable"
],
"enum": ["list", "table", "htmlTable"],
"description": "[typedoc-plugin-markdown] Sets the format of property groups for interfaces and classes.",
"default": "list"
},
"propertyMembersFormat": {
"type": "string",
"enum": [
"list",
"table",
"htmlTable"
],
"enum": ["list", "table", "htmlTable"],
"description": "[typedoc-plugin-markdown] Sets the format of style for property members for interfaces and classes.",
"default": "list"
},
Expand Down Expand Up @@ -278,11 +247,7 @@
},
"typeDeclarationFormat": {
"type": "string",
"enum": [
"list",
"table",
"htmlTable"
],
"enum": ["list", "table", "htmlTable"],
"description": "[typedoc-plugin-markdown] Sets the format of style for type declaration members.",
"default": "list"
},
Expand All @@ -303,4 +268,4 @@
"definitions": {}
}
]
}
}
3 changes: 1 addition & 2 deletions packages/typedoc-plugin-markdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# Changelog

## 4.1.2
## 4.1.2 (2024-07-05)

### Patch Changes

- Exposed "blockTagsPreserveOrder" option to configure ordering of comment block tags ([#627](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/627)).
- Exposed "useHTMLEncodedBrackets" option for alternative angle bracket escaping([#564](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/564)).
- Support TypeDoc 0.26 relative links implementation ([#645](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/645)).
- Allow "htmlTable" format key for indexes ([#618](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/618)).

## 4.1.1 (2024-06-30)

Expand Down

0 comments on commit 337e060

Please sign in to comment.