From b1279a9e905be8bdd8edc7a1de1120963afe7fa1 Mon Sep 17 00:00:00 2001 From: Clustermin Date: Wed, 2 Aug 2023 22:13:00 +0700 Subject: [PATCH] Replace symbol with backref_symbol It should be `backref_symbol`, not `symbol`. --- docs/2.4/extensions/footnotes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/2.4/extensions/footnotes.md b/docs/2.4/extensions/footnotes.md index d970d55774..b5ecef547a 100644 --- a/docs/2.4/extensions/footnotes.md +++ b/docs/2.4/extensions/footnotes.md @@ -130,13 +130,13 @@ This `string` option defines the prefix prepended to footnote elements. ## Adding Icons -You can use CSS to add a custom icon instead of providing a `symbol`: +You can use CSS to add a custom icon instead of providing a `backref_symbol`: ```php $config = [ 'footnote' => [ 'backref_class' => 'footnote-backref', - 'symbol' => '', + 'backref_symbol' => '', ], ]; ```