From a73f85ed25d1c64cdd69182b3eacb198b33a4b4d Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Thu, 7 Nov 2024 10:14:26 -0700 Subject: [PATCH] docs: Marked extension template docs (#3523) * docs: add information about marked extension template * add note --- docs/USING_PRO.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/USING_PRO.md b/docs/USING_PRO.md index 6c7c2922c3..a55960f51e 100644 --- a/docs/USING_PRO.md +++ b/docs/USING_PRO.md @@ -440,6 +440,8 @@ The renderer function has access to the parser in the `this` object, which can b
An array of strings that match the names of any token parameters that should be traversed by the walkTokens functions. For instance, if you want to use a second custom parameter to contain child tokens in addition to tokens, it could be listed here. If childTokens is provided, the tokens array will not be walked by default unless it is also included in the childTokens array.
+> Note: If you would like to release an extension as an npm package you may use the [Marked Extension Template](https://github.com/markedjs/marked-extension-template) which includes all of the things you need to get started. Feel free to create an issue in that [repo](https://github.com/markedjs/marked-extension-template) if you need help. + **Example:** Add a custom syntax to generate `
` description lists. ``` js