From 677da179d83a014573062230c54768449320cd46 Mon Sep 17 00:00:00 2001 From: Anthony Ikeda Date: Tue, 9 Nov 2021 11:07:14 -0800 Subject: [PATCH] More consistent formatting of the Note block Signed-off-by: Anthony Ikeda --- docs/features/software-templates/writing-custom-actions.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/features/software-templates/writing-custom-actions.md b/docs/features/software-templates/writing-custom-actions.md index ff43339ff0..93cd2a7db1 100644 --- a/docs/features/software-templates/writing-custom-actions.md +++ b/docs/features/software-templates/writing-custom-actions.md @@ -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