Skip to content

Commit 1c39488

Browse files
HClowardckoegel
authored andcommitted
docs: adds vale rules and workflow for running in CI (Redocly#2348)
* docs: adds vale rules and workflow for running in CI * docs: updates product name from ReDoc to Redoc
1 parent 087390e commit 1c39488

File tree

4 files changed

+64
-17
lines changed

4 files changed

+64
-17
lines changed

.github/pull_request_template.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## What/Why/How?
2+
3+
## Reference
4+
5+
## Tests
6+
7+
## Screenshots (optional)
8+
9+
## Check yourself
10+
11+
- [ ] Code is linted
12+
- [ ] Tested
13+
- [ ] All new/updated code is covered with tests

.github/styles/Rules/HeaderGerunds.yml

-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,3 @@ level: error
55
scope: heading
66
tokens:
77
- '^\w*ing.*'
8-
exceptions:
9-
- expandSingleSchemaField
10-
- hideLoading
11-
- hideSingleRequestSampleTab

README.md

+49-11
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ enter the URL for your definition and select **TRY IT**.
4949

5050
## Usage
5151

52-
Redoc is provided as a CLI tool (also distributed as a Docker image), HTML tag, and React component.
52+
Additionally, all the 1.x releases are hosted on our GitHub Pages-based CDN **(deprecated)**:
53+
- particular release, for example `v1.2.0`: https://rebilly.github.io/ReDoc/releases/v1.2.0/redoc.min.js
54+
- `v1.x.x` release: https://rebilly.github.io/ReDoc/releases/v1.x.x/redoc.min.js
55+
- `latest` release: https://rebilly.github.io/ReDoc/releases/latest/redoc.min.js - points to latest 1.x.x release since 2.x releases are not hosted on this CDN but on unpkg.
5356

5457
### Generate documentation from the CLI
5558

@@ -135,16 +138,51 @@ Redoc uses the following [specification extensions](https://redocly.com/docs/api
135138

136139
## Releases
137140

138-
**The README for the `1.x` version is on the [v1.x](https://github.com/Redocly/redoc/tree/v1.x) branch.**
139-
140-
All the 2.x releases are deployed to npm and can be used with Redocly-cdn:
141-
- particular release, for example, `v2.0.0`: https://cdn.redoc.ly/redoc/v2.0.0/bundles/redoc.standalone.js
142-
- `latest` release: https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js
143-
144-
Additionally, all the 1.x releases are hosted on our GitHub Pages-based CDN **(deprecated)**:
145-
- particular release, for example `v1.2.0`: https://rebilly.github.io/ReDoc/releases/v1.2.0/redoc.min.js
146-
- `v1.x.x` release: https://rebilly.github.io/ReDoc/releases/v1.x.x/redoc.min.js
147-
- `latest` release: https://rebilly.github.io/ReDoc/releases/latest/redoc.min.js - points to latest 1.x.x release since 2.x releases are not hosted on this CDN but on unpkg.
141+
* `disableSearch` - disable search indexing and search box.
142+
* `minCharacterLengthToInitSearch` - set minimal characters length to init search, default `3`, minimal `1`.
143+
* `expandDefaultServerVariables` - enable expanding default server variables, default `false`.
144+
* `expandResponses` - specify which responses to expand by default by response codes. Values should be passed as comma-separated list without spaces e.g. `expandResponses="200,201"`. Special value `"all"` expands all responses by default. Be careful: this option can slow-down documentation rendering time.
145+
* `generatedPayloadSamplesMaxDepth` - set the maximum render depth for JSON payload samples (responses and request body). The default value is `10`.
146+
* `maxDisplayedEnumValues` - display only specified number of enum values. hide rest values under spoiler.
147+
* `hideDownloadButton` - do not show "Download" spec button. **THIS DOESN'T MAKE YOUR SPEC PRIVATE**, it just hides the button.
148+
* `downloadFileName` - set a custom file name for the downloaded API definition file.
149+
* `downloadDefinitionUrl` - If the 'Download' button is visible in the API reference documentation (hideDownloadButton=false), the URL configured here opens when that button is selected. Provide it as an absolute URL with the full URI scheme.
150+
* `hideHostname` - if set, the protocol and hostname is not shown in the operation definition.
151+
* `hideLoading` - do not show loading animation. Useful for small docs.
152+
* `hideFab` - do not show FAB in mobile view. Useful for implementing a custom floating action button.
153+
* `hideSchemaPattern` - if set, the pattern is not shown in the schema.
154+
* `hideSingleRequestSampleTab` - do not show the request sample tab for requests with only one sample.
155+
* `showObjectSchemaExamples` - show object schema example in the properties, default `false`.
156+
* `expandSingleSchemaField` - automatically expand single field in a schema
157+
* `schemaExpansionLevel` - specifies whether to automatically expand schemas. Special value `"all"` expands all levels. The default value is `0`.
158+
* `jsonSampleExpandLevel` - set the default expand level for JSON payload samples (responses and request body). Special value `"all"` expands all levels. The default value is `2`.
159+
* `hideSchemaTitles` - do not display schema `title` next to to the type
160+
* `simpleOneOfTypeLabel` - show only unique oneOf types in the label without titles
161+
* `sortEnumValuesAlphabetically` - set to true, sorts all enum values in all schemas alphabetically
162+
* `sortOperationsAlphabetically` - set to true, sorts operations in the navigation sidebar and in the middle panel alphabetically
163+
* `sortTagsAlphabetically` - set to true, sorts tags in the navigation sidebar and in the middle panel alphabetically
164+
* `lazyRendering` - _Not implemented yet_ ~~if set, enables lazy rendering mode in ReDoc. This mode is useful for APIs with big number of operations (e.g. > 50). In this mode ReDoc shows initial screen ASAP and then renders the rest operations asynchronously while showing progress bar on the top. Check out the [demo](\\redocly.github.io/redoc) for the example.~~
165+
* `menuToggle` - if true, clicking second time on expanded menu item collapses it, default `true`.
166+
* `nativeScrollbars` - use native scrollbar for sidemenu instead of perfect-scroll (scrolling performance optimization for big specs).
167+
* `onlyRequiredInSamples` - shows only required fields in request samples.
168+
* `pathInMiddlePanel` - show path link and HTTP verb in the middle panel instead of the right one.
169+
* `requiredPropsFirst` - show required properties first ordered in the same order as in `required` array.
170+
* `scrollYOffset` - If set, specifies a vertical scroll-offset. This is often useful when there are fixed positioned elements at the top of the page, such as navbars, headers etc;
171+
`scrollYOffset` can be specified in various ways:
172+
* **number**: A fixed number of pixels to be used as offset.
173+
* **selector**: selector of the element to be used for specifying the offset. The distance from the top of the page to the element's bottom is used as offset.
174+
* **function**: A getter function. Must return a number representing the offset (in pixels).
175+
* `showExtensions` - show vendor extensions ("x-" fields). Extensions used by Redoc are ignored. Can be boolean or an array of `string` with names of extensions to display.
176+
* `sortPropsAlphabetically` - sort properties alphabetically.
177+
* `payloadSampleIdx` - if set, payload sample is inserted at this index or last. Indexes start from 0.
178+
* `theme` - Redoc theme. For details check [theme docs](#redoc-theme-object).
179+
* `untrustedSpec` - if set, the spec is considered untrusted and all HTML/markdown is sanitized to prevent XSS. **Disabled by default** for performance reasons. **Enable this option if you work with untrusted user data!**
180+
* `nonce` - if set, the provided value is injected in every injected HTML element in the `nonce` attribute. Useful when using CSP, see https://webpack.js.org/guides/csp/.
181+
* `sideNavStyle` - can be specified in various ways:
182+
* **summary-only**: displays a summary in the sidebar navigation item. (**default**)
183+
* **path-only**: displays a path in the sidebar navigation item.
184+
* **id-only**: displays the operation id with a fallback to the path in the sidebar navigation item.
185+
* `showWebhookVerb` - when set to `true`, shows the HTTP request method for webhooks in operations and in the sidebar.
148186

149187

150188
## Development

docs/deployment/html.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can install Redoc using one of the following package managers:
1616
:::attention Initialize your package manager
1717
If you do not have a `package.json` file in your project directory,
1818
you need to add one by initializing npm or yarn in your project. Use the command `npm init` for npm,
19-
or `yarn init` for yarn. These initialization commands will lead you through the process
19+
or `yarn init` for yarn. These initialization commands lead you through the process
2020
of creating a `package.json` file in your project.
2121

2222
For more information, see
@@ -98,7 +98,7 @@ Redoc.init(specOrSpecUrl, options, element, callback)
9898
- `specOrSpecUrl`: Either a JSON object with the OpenAPI definition or a URL to the
9999
definition in JSON or YAML format.
100100
- `options`: See [`theme.openapi` object](/docs/api-reference-docs/configuration/functionality.mdx) reference.
101-
- `element`: DOM element Redoc will be inserted into.
101+
- `element`: DOM element Redoc is inserted into.
102102
- `callback`(optional): Callback to be called after Redoc has been fully rendered.
103103
It is also called on errors with `error` as the first argument.
104104

0 commit comments

Comments
 (0)