From 94be338cbd619a2d758e14e1511c08109ecac03e Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Tue, 20 Aug 2019 12:42:33 +0500 Subject: [PATCH] Fix mention of non-existing PageLinkHandler.get_identifier Refs #5184 --- docs/advanced_topics/customisation/rich_text_internals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced_topics/customisation/rich_text_internals.rst b/docs/advanced_topics/customisation/rich_text_internals.rst index c2bd107079..d91f984483 100644 --- a/docs/advanced_topics/customisation/rich_text_internals.rst +++ b/docs/advanced_topics/customisation/rich_text_internals.rst @@ -87,7 +87,7 @@ You can create custom rewrite handlers to support your own new ``linktype`` and Required. The ``identifier`` attribute is a string that indicates which rich text tags should be handled by this handler. - For example, ``PageLinkHandler.get_identifier`` returns the string ``"page"``, indicating that any rich text tags with ```` should be handled by it. + For example, ``PageLinkHandler.identifier`` is set to the string ``"page"``, indicating that any rich text tags with ```` should be handled by it. .. method:: expand_db_attributes(attrs)