More consistent formatting of the Note block

Signed-off-by: Anthony Ikeda <anthony.ikeda@gmail.com>
This commit is contained in:
Anthony Ikeda
2021-11-09 11:07:14 -08:00
parent 5b9d1291f7
commit 677da179d8
@@ -8,11 +8,9 @@ If you're wanting to extend the functionality of the Scaffolder, you can do so
by writing custom actions which can be used along side our
[built-in actions](./builtin-actions.md).
---
**NOTE**
When adding custom actions, the actions array will **replace the built-in actions too**, so if you
want to have those as well as your new one, you'll need to do the following:
> Note: When adding custom actions, the actions array will **replace the built-in actions too**,
> so if you want to have those as well as your new one, you'll need to do the following:
```ts
import { createBuiltinActions } from '@backstage/plugin-scaffolder-backend';
@@ -40,7 +38,6 @@ return await createRouter({
actions,
});
```
---
### Writing your Custom Action