chore: cleaned up markdown with prettier

Signed-off-by: Nigel Wright <nigel.wright@roamdigital.com>
This commit is contained in:
Nigel Wright
2022-01-11 09:16:25 +13:00
parent fb33739fbe
commit 5de4482b44
+4 -4
View File
@@ -27,15 +27,15 @@ catalog:
Note the `s3-discovery` type, as this is not a regular `url` processor.
As this processor is not one of the default providers, you will also need to add the below to `packages/backend/src/plugins/catalog.ts`:
As this processor is not one of the default providers, you will also need to add
the below to `packages/backend/src/plugins/catalog.ts`:
```ts
/* packages/backend/src/plugins/catalog.ts */
import { AwsS3DiscoveryProcessor} from '@backstage/plugin-catalog-backend';
import { AwsS3DiscoveryProcessor } from '@backstage/plugin-catalog-backend';
const builder = await CatalogBuilder.create(env);
/** ... other processors ... */
builder.addProcessor(new AwsS3DiscoveryProcessor(env.reader))
builder.addProcessor(new AwsS3DiscoveryProcessor(env.reader));
```