summaryrefslogtreecommitdiff
path: root/docs/change_log/release-3.4.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/change_log/release-3.4.md')
-rw-r--r--docs/change_log/release-3.4.md18
1 files changed, 15 insertions, 3 deletions
diff --git a/docs/change_log/release-3.4.md b/docs/change_log/release-3.4.md
index 0070da9..71f9a20 100644
--- a/docs/change_log/release-3.4.md
+++ b/docs/change_log/release-3.4.md
@@ -2,7 +2,8 @@ title: Release Notes for v3.4
# Python-Markdown 3.4 Release Notes
-Python-Markdown version 3.4 supports Python versions 3.6, 3.7, 3.8, 3.9 and PyPy3.
+Python-Markdown version 3.4 supports Python versions 3.6, 3.7, 3.8, 3.9, 3.10 and
+PyPy3.
## Backwards-incompatible changes
@@ -37,8 +38,19 @@ The following new features have been included in the 3.3 release:
inter-operation. The old behavior is available by setting `use_align_attribute=True` when
adding the extension.
-## Bug fixes
+* Some new configuration options have been added to the [footnotes](../extensions/footnotes.md)
+ extension (#1218):
-The following bug fixes are included in the 3.4 release:
+ * Small refactor of the `BACKLINK_TITLE` option; The use of `format()` instead
+ of "old" `%d` formatter allows to specify text without the need to have the
+ number of the footnote in it (like footnotes on Wikipedia for example).
+ The modification is backward compatible so no configuration change is required.
+ * Addition of a new option `SUPERSCRIPT_TEXT` that allows to specify a custom
+ placeholder for the footnote itself in the text.
+ Ex: `[{}]` will give <sup>[1]</sup>, `({})` will give <sup>(1)</sup>,
+ or just by default, the current behavior: <sup>1</sup>.
+## Bug fixes
+
+The following bug fixes are included in the 3.4 release: