From 81f75ed1545c9b797a384b7afbeb5c862c1497c7 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Fri, 13 Jan 2023 12:44:51 -0500 Subject: [PATCH] Fix GitHub Pages build failure (#1941) --- docs/adding-new-rtypes.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/adding-new-rtypes.md b/docs/adding-new-rtypes.md index 95e2568b6..6379d4810 100644 --- a/docs/adding-new-rtypes.md +++ b/docs/adding-new-rtypes.md @@ -229,4 +229,6 @@ Add a new Markdown file to `docs/_functions/domain`. Copy an existing file (`CNA - `parameters`: A list of parameter names, in order. Feel free to use spaces in the name if necessary. Your last parameter should be `modifiers...` to allow arbitrary modifiers like `TTL` to be applied to your record. - `parameter_types`: an object with parameter names as keys and TypeScript type names as values. Check out existing record documentation if you’re not sure to put for a parameter. Note that this isn’t displayed on the website, it’s only used to generate the `.d.ts` file. +{% raw %} The rest of the file is the documentation. You can use Markdown syntax to format the text. Use the `{% capture example %}` format to set up a collapsible code block. You can also use it multiple times to show multiple examples. +{% endraw %}