From 64ea6dd8b8faf13b86beac8595832ba67f07c7b2 Mon Sep 17 00:00:00 2001 From: Sage Abdullah Date: Tue, 18 Apr 2023 14:49:22 +0700 Subject: [PATCH] Fix missing newline in editing interface customisation docs Regression in 2abd7916afe2a88c1ff836a045907cf2ac81e498 --- .../advanced_topics/customisation/page_editing_interface.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/advanced_topics/customisation/page_editing_interface.md b/docs/advanced_topics/customisation/page_editing_interface.md index 8dd8c12ba5..4074b70f63 100644 --- a/docs/advanced_topics/customisation/page_editing_interface.md +++ b/docs/advanced_topics/customisation/page_editing_interface.md @@ -109,13 +109,13 @@ register_image_format(Format('thumbnail', 'Thumbnail', 'richtext-image thumbnail To begin, import the `Format` class, `register_image_format` function, and optionally `unregister_image_format` function. To register a new `Format`, call the `register_image_format` with the `Format` object as the argument. The `Format` class takes the following constructor arguments: -**`name`** +**`name`**\ The unique key used to identify the format. To unregister this format, call `unregister_image_format` with this string as the only argument. -**`label`** +**`label`**\ The label used in the chooser form when inserting the image into the `RichTextField`. -**`classnames`** +**`classnames`**\ The string to assign to the `class` attribute of the generated `` tag. ```{note}