Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Aug 27, 2022
1 parent adcd30b commit 722006e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function set(array $footnotes = []): void
* use the get() method.
*
* @param string|FieldData $string
*
* @param array $options
* @return string
*
* @see get()
Expand Down Expand Up @@ -97,7 +97,7 @@ public function filter($string, array $options = []): string
$anchorAttributes = $options['anchorAttributes'] ?? [];
$anchorAttrs = array_merge_recursive($anchorAttributes, ['id' => 'fnref:' . $number, 'href' => '#footnote-' . $number]);

$replaceWith = Html::tag('a', $replaceWith, $anchorAttributes);
$replaceWith = Html::tag('a', $replaceWith, $anchorAttrs);
}

$superscriptAttributes = $options['superscriptAttributes'] ?? [];
Expand Down

0 comments on commit 722006e

Please sign in to comment.