fix: Minor product capitalization

Signed-off-by: Adam Harvey <adaharve@cisco.com>
This commit is contained in:
Adam Harvey
2023-05-02 19:39:03 -04:00
parent 1ebb0a3944
commit 2b663945cb
2 changed files with 2 additions and 2 deletions
@@ -29,7 +29,7 @@ export type TechDocsPageWrapperProps = {
};
/**
* Component wrapping a techdocs page with Page and Header components
* Component wrapping a TechDocs page with Page and Header components
*
* @public
*/
+1 -1
View File
@@ -2,7 +2,7 @@
The TechDocs reader is a component that fetches a remote page, runs transformers on it and renders it into a shadow dom.
Currently there's no easy way to customize which transformers to run or add new ones. If that is needed you would have to fork the techdocs plugin and make your changes in that fork.
Currently there's no easy way to customize which transformers to run or add new ones. If that is needed you would have to fork the TechDocs plugin and make your changes in that fork.
Transformers are functions that optionally takes in parameters from the Reader.tsx component and returns a function which gets passed the DOM of the fetched page. A very simple transformer can look like this.