docusaurus-plugin-openapi-docs 0.0.0-beta.727 → 0.0.0-beta.729

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.
@@ -45,7 +45,7 @@ exports.render = render;
45
45
  exports.lessThan = /<=?(?!(=|button|\s?\/button|code|\s?\/code|details|\s?\/details|summary|\s?\/summary|hr|\s?\/hr|br|\s?\/br|span|\s?\/span|strong|\s?\/strong|small|\s?\/small|table|\s?\/table|thead|\s?\/thead|tbody|\s?\/tbody|td|\s?\/td|tr|\s?\/tr|th|\s?\/th|h1|\s?\/h1|h2|\s?\/h2|h3|\s?\/h3|h4|\s?\/h4|h5|\s?\/h5|h6|\s?\/h6|title|\s?\/title|p|\s?\/p|em|\s?\/em|b|\s?\/b|i|\s?\/i|u|\s?\/u|strike|\s?\/strike|bold|\s?\/bold|a|\s?\/a|table|\s?\/table|li|\s?\/li|ol|\s?\/ol|ul|\s?\/ul|img|\s?\/img|svg|\s?\/svg|div|\s?\/div|center|\s?\/center))/gu;
46
46
  exports.greaterThan = /(?<!(button|code|details|summary|hr|br|span|strong|small|table|thead|tbody|td|tr|th|h1|h2|h3|h4|h5|h6|title|p|em|b|i|u|strike|bold|a|li|ol|ul|img|svg|div|center|\/|\s|"|'))>/gu;
47
47
  exports.codeFence = /`{1,3}[\s\S]*?`{1,3}/g;
48
- exports.curlyBrackets = /([{|}])/g;
48
+ exports.curlyBrackets = /([{}])/g;
49
49
  exports.codeBlock = /(^```.*[\s\S]*?```$|`[^`].+?`)/gm;
50
50
  function clean(value) {
51
51
  if (!value) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "docusaurus-plugin-openapi-docs",
3
3
  "description": "OpenAPI plugin for Docusaurus.",
4
- "version": "0.0.0-beta.727",
4
+ "version": "0.0.0-beta.729",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "openapi",
@@ -62,5 +62,5 @@
62
62
  "engines": {
63
63
  "node": ">=14"
64
64
  },
65
- "gitHead": "3269c28557138d879701d00fe96c054c708155cc"
65
+ "gitHead": "b234970591b270860c1cc9e4e3c0cd57afa08ebf"
66
66
  }
@@ -61,7 +61,7 @@ export const lessThan =
61
61
  export const greaterThan =
62
62
  /(?<!(button|code|details|summary|hr|br|span|strong|small|table|thead|tbody|td|tr|th|h1|h2|h3|h4|h5|h6|title|p|em|b|i|u|strike|bold|a|li|ol|ul|img|svg|div|center|\/|\s|"|'))>/gu;
63
63
  export const codeFence = /`{1,3}[\s\S]*?`{1,3}/g;
64
- export const curlyBrackets = /([{|}])/g;
64
+ export const curlyBrackets = /([{}])/g;
65
65
  export const codeBlock = /(^```.*[\s\S]*?```$|`[^`].+?`)/gm;
66
66
 
67
67
  export function clean(value: string | undefined): string {