From 33bb83ed694e31417cc0aff6665783855b641efe Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Wed, 1 Jul 2026 09:42:04 -0400 Subject: [PATCH 1/2] Document all extensions are in maintennce mode This has been the de facto policy for some time. We are now officially documenting it. Relates to #1612. Some recommendations for alternative extensions have been included. --- docs/changelog.md | 1 + docs/extensions/abbreviations.md | 13 +++++++++++++ docs/extensions/admonition.md | 16 ++++++++++++++++ docs/extensions/attr_list.md | 13 +++++++++++++ docs/extensions/code_hilite.md | 16 ++++++++++++++++ docs/extensions/definition_lists.md | 16 ++++++++++++++++ docs/extensions/extra.md | 13 +++++++++++++ docs/extensions/fenced_code_blocks.md | 15 +++++++++++++++ docs/extensions/footnotes.md | 13 +++++++++++++ docs/extensions/index.md | 24 ++++++++++++++++++++---- docs/extensions/legacy_attrs.md | 13 +++++++++++++ docs/extensions/legacy_em.md | 13 +++++++++++++ docs/extensions/md_in_html.md | 16 ++++++++++++++++ docs/extensions/meta_data.md | 13 +++++++++++++ docs/extensions/nl2br.md | 13 +++++++++++++ docs/extensions/sane_lists.md | 13 +++++++++++++ docs/extensions/smarty.md | 13 +++++++++++++ docs/extensions/tables.md | 13 +++++++++++++ docs/extensions/toc.md | 13 +++++++++++++ docs/extensions/wikilinks.md | 13 +++++++++++++ 20 files changed, 269 insertions(+), 4 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 0894a528c..49f6d52fd 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -15,6 +15,7 @@ See the [Contributing Guide](contributing.md) for details. ### Fixed * Fix `SetextHeaderProcessor` regex to prevent mixed `=` and `-` chars in setext-style headers (#1606). +* Officially document all included extensions as being in maintenance mode. ## [3.10.2] - 2026-02-09 diff --git a/docs/extensions/abbreviations.md b/docs/extensions/abbreviations.md index 2e8fd74a5..19b3fae7d 100644 --- a/docs/extensions/abbreviations.md +++ b/docs/extensions/abbreviations.md @@ -11,6 +11,19 @@ Specifically, any defined abbreviation is wrapped in an `` tag. The Abbreviations extension is included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + Syntax ------ diff --git a/docs/extensions/admonition.md b/docs/extensions/admonition.md index 4f79d488e..9609d5b3c 100644 --- a/docs/extensions/admonition.md +++ b/docs/extensions/admonition.md @@ -12,6 +12,22 @@ This extension is included in the standard Markdown library. [rST]: http://docutils.sourceforge.net/docs/ref/rst/directives.html#specific-admonitions +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + + We recommend [PyMdown Admonition] as an actively developed alternative. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md +[PyMdown Admonition]: https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/admonition/ + Syntax ------ diff --git a/docs/extensions/attr_list.md b/docs/extensions/attr_list.md index d3d5e1214..99f6b3026 100644 --- a/docs/extensions/attr_list.md +++ b/docs/extensions/attr_list.md @@ -9,6 +9,19 @@ HTML elements in markdown's output. This extension is included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + ## Syntax The basic syntax was inspired by Maruku's Attribute Lists feature (see [web archive][Maruku]). diff --git a/docs/extensions/code_hilite.md b/docs/extensions/code_hilite.md index 19b9d526d..119385a81 100644 --- a/docs/extensions/code_hilite.md +++ b/docs/extensions/code_hilite.md @@ -11,6 +11,22 @@ Python-Markdown code blocks using [Pygments][]. This extension is included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + + We recommend [Highlight] as an actively developed alternative. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md +[Highlight]: https://facelessuser.github.io/pymdown-extensions/extensions/highlight/ + ## Setup ### Step 1: Download and Install Pygments diff --git a/docs/extensions/definition_lists.md b/docs/extensions/definition_lists.md index 047996acf..184e87f33 100644 --- a/docs/extensions/definition_lists.md +++ b/docs/extensions/definition_lists.md @@ -11,6 +11,22 @@ Markdown documents. This extension is included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + + We recommend [PyMdown Definition] as an actively developed alternative. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md +[PyMdown Definition]: https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/definition/ + Syntax ------ diff --git a/docs/extensions/extra.md b/docs/extensions/extra.md index 77f5de086..e8fdcdb3e 100644 --- a/docs/extensions/extra.md +++ b/docs/extensions/extra.md @@ -20,6 +20,19 @@ The supported extensions include: See each individual extension for syntax documentation. Extra and all its supported extensions are included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + ## Usage From the Python interpreter: diff --git a/docs/extensions/fenced_code_blocks.md b/docs/extensions/fenced_code_blocks.md index 05d808252..521d97a5e 100644 --- a/docs/extensions/fenced_code_blocks.md +++ b/docs/extensions/fenced_code_blocks.md @@ -9,6 +9,21 @@ indented code blocks. This extension is included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + + We recommend [SuperFences] as an actively developed alternative. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + ## Syntax Fenced Code Blocks are defined using the syntax originally established in [PHP Markdown Extra][php] and popularized by diff --git a/docs/extensions/footnotes.md b/docs/extensions/footnotes.md index a4b78b206..d1290bf32 100644 --- a/docs/extensions/footnotes.md +++ b/docs/extensions/footnotes.md @@ -11,6 +11,19 @@ documents. This extension is included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + Syntax ------ diff --git a/docs/extensions/index.md b/docs/extensions/index.md index 6481caa13..220e1fe69 100644 --- a/docs/extensions/index.md +++ b/docs/extensions/index.md @@ -26,12 +26,12 @@ See the [Command Line docs](../cli.md) or use the `--help` option for more detai If you would like to write your own extensions, see the [Extension API](api.md) for details. -Officially Supported Extensions -------------------------------- +Included Extensions +------------------- The extensions listed below are included with (at least) the most recent release and are officially supported by Python-Markdown. Any documentation is -maintained here and all bug reports should be made to the project. If you +maintained here and all bug reports should be made to this project. If you have a typical install of Python-Markdown, these extensions are already available to you using the "Entry Point" name listed in the second column below. @@ -75,7 +75,23 @@ Extension | Entry Point | Dot Notation [Table of Contents]: toc.md [WikiLinks]: wikilinks.md -Third Party Extensions +!!! Note + + All of the included extensions are in __maintenance mode__. We will + continue to fix bugs and keep them up-to-date with the core parser, but + no new features or changes in behavior will be made. Additionally, no new + extensions will be added to the project. All future extension development + should happen in third-party extensions. If you need a feature that seems + like it would be a good addition to one of the included extensions, then + you have three options (1) find an existing [third-party extension] which + meets your needs, (2) [build your own extension], or (3) fork the + relevant included extension (pursuant to its licensing requirements) and + maintain it as a third-party extension. + +[third-party extension]: #third-party-extensions +[build your own extension]: api.md + +Third-Party Extensions ---------------------- Various individuals and/or organizations have developed extensions which they diff --git a/docs/extensions/legacy_attrs.md b/docs/extensions/legacy_attrs.md index daa566d32..d03b6f191 100644 --- a/docs/extensions/legacy_attrs.md +++ b/docs/extensions/legacy_attrs.md @@ -11,6 +11,19 @@ users have never made use of the syntax and it has been deprecated in favor of [Attribute Lists](attr_list.md). This extension restores the legacy behavior for users who have existing documents which use the syntax. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + ## Syntax Attributes are defined by including the following within the element you wish to diff --git a/docs/extensions/legacy_em.md b/docs/extensions/legacy_em.md index 67c6cd006..69bcf7d72 100644 --- a/docs/extensions/legacy_em.md +++ b/docs/extensions/legacy_em.md @@ -17,6 +17,19 @@ of the reference implementation. Therefore, this extension can be used to better match the reference implementation. With the extension enabled, the above input would result in this output: `connectedwords_`. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + ## Usage See [Extensions](index.md) for general extension usage. Use `legacy_em` as the diff --git a/docs/extensions/md_in_html.md b/docs/extensions/md_in_html.md index 06a01d763..96275e5d7 100644 --- a/docs/extensions/md_in_html.md +++ b/docs/extensions/md_in_html.md @@ -6,6 +6,22 @@ title: Markdown in HTML Extension An extension that parses Markdown inside of HTML tags. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + + We recommend [PyMdown HTML] as an alternative solution. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md +[PyMdown HTML]: https://facelessuser.github.io/pymdown-extensions/extensions/blocks/plugins/html/ + ## Syntax By default, Markdown ignores any content within a raw HTML block-level element. With the `md-in-html` extension diff --git a/docs/extensions/meta_data.md b/docs/extensions/meta_data.md index 26513242c..28c467abd 100644 --- a/docs/extensions/meta_data.md +++ b/docs/extensions/meta_data.md @@ -16,6 +16,19 @@ This extension is included in the standard Markdown library. [MultiMarkdown]: https://fletcherpenney.net/multimarkdown/#metadata +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + Syntax ------ diff --git a/docs/extensions/nl2br.md b/docs/extensions/nl2br.md index 2c7a1a58e..c0787ebde 100644 --- a/docs/extensions/nl2br.md +++ b/docs/extensions/nl2br.md @@ -11,6 +11,19 @@ hard breaks; like StackOverflow and [GitHub][] flavored Markdown do. [Github]: https://github.github.com/github-flavored-markdown/ +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + Example ------- diff --git a/docs/extensions/sane_lists.md b/docs/extensions/sane_lists.md index bb43833b1..60a087f85 100644 --- a/docs/extensions/sane_lists.md +++ b/docs/extensions/sane_lists.md @@ -11,6 +11,19 @@ to be less surprising. This extension is included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + Syntax ------ diff --git a/docs/extensions/smarty.md b/docs/extensions/smarty.md index d7211c01a..a6653838d 100644 --- a/docs/extensions/smarty.md +++ b/docs/extensions/smarty.md @@ -50,6 +50,19 @@ extension_configs = { [SmartyPants]: https://pythonhosted.org/smartypants/ [CodeHilite]: code_hilite.md +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + Usage ----- diff --git a/docs/extensions/tables.md b/docs/extensions/tables.md index aaffc09e5..63650afaa 100644 --- a/docs/extensions/tables.md +++ b/docs/extensions/tables.md @@ -10,6 +10,19 @@ The Tables extension adds the ability to create tables in Markdown documents. This extension is included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + Syntax ------ diff --git a/docs/extensions/toc.md b/docs/extensions/toc.md index 6db62226f..814a1c00e 100644 --- a/docs/extensions/toc.md +++ b/docs/extensions/toc.md @@ -11,6 +11,19 @@ document and adds it into the resulting HTML document. This extension is included in the standard Markdown library. +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + Syntax ------ diff --git a/docs/extensions/wikilinks.md b/docs/extensions/wikilinks.md index cd355f74d..173433683 100644 --- a/docs/extensions/wikilinks.md +++ b/docs/extensions/wikilinks.md @@ -11,6 +11,19 @@ This extension is included in the standard Markdown library. [WikiLinks]: https://en.wikipedia.org/wiki/Wikilink +!!! Note + + This extension is in __maintanence mode__. We will continue to fix bugs + and keep it up-to-date with the core parser, but no new features or + changes in behavior will be made. If you need a feature that this + extension does not offer, then you have three options (1) find an + existing [third-party extension] which meets your needs, (2) [build your + own extension], or (3) fork this extension (pursuant to its licensing + requirements) and maintain it as a third-party extension. + +[third-party extension]: index.md#third-party-extensions +[build your own extension]: api.md + ## Syntax A ``[[bracketed]]`` word is any combination of upper or lower case letters, From eeac00aa8739cd98bac5b4b1e61a554238eac76d Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Wed, 1 Jul 2026 10:00:31 -0400 Subject: [PATCH 2/2] spelling corrections --- .spell-dict | 1 + docs/extensions/abbreviations.md | 2 +- docs/extensions/admonition.md | 2 +- docs/extensions/attr_list.md | 2 +- docs/extensions/code_hilite.md | 2 +- docs/extensions/definition_lists.md | 2 +- docs/extensions/extra.md | 2 +- docs/extensions/fenced_code_blocks.md | 2 +- docs/extensions/footnotes.md | 2 +- docs/extensions/legacy_attrs.md | 2 +- docs/extensions/legacy_em.md | 2 +- docs/extensions/md_in_html.md | 2 +- docs/extensions/meta_data.md | 2 +- docs/extensions/nl2br.md | 2 +- docs/extensions/sane_lists.md | 2 +- docs/extensions/smarty.md | 2 +- docs/extensions/tables.md | 2 +- docs/extensions/toc.md | 2 +- docs/extensions/wikilinks.md | 2 +- 19 files changed, 19 insertions(+), 18 deletions(-) diff --git a/.spell-dict b/.spell-dict index 49c118a2d..48984b469 100644 --- a/.spell-dict +++ b/.spell-dict @@ -94,6 +94,7 @@ prepended preprocessor preprocessors Pygments +PyMdown PyPI PyPy PYTHONPATH diff --git a/docs/extensions/abbreviations.md b/docs/extensions/abbreviations.md index 19b3fae7d..1bfa13a09 100644 --- a/docs/extensions/abbreviations.md +++ b/docs/extensions/abbreviations.md @@ -13,7 +13,7 @@ The Abbreviations extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/admonition.md b/docs/extensions/admonition.md index 9609d5b3c..c9a71161d 100644 --- a/docs/extensions/admonition.md +++ b/docs/extensions/admonition.md @@ -14,7 +14,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/attr_list.md b/docs/extensions/attr_list.md index 99f6b3026..04d9eba25 100644 --- a/docs/extensions/attr_list.md +++ b/docs/extensions/attr_list.md @@ -11,7 +11,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/code_hilite.md b/docs/extensions/code_hilite.md index 119385a81..322ab8b21 100644 --- a/docs/extensions/code_hilite.md +++ b/docs/extensions/code_hilite.md @@ -13,7 +13,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/definition_lists.md b/docs/extensions/definition_lists.md index 184e87f33..94b721f6d 100644 --- a/docs/extensions/definition_lists.md +++ b/docs/extensions/definition_lists.md @@ -13,7 +13,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/extra.md b/docs/extensions/extra.md index e8fdcdb3e..8328dfff2 100644 --- a/docs/extensions/extra.md +++ b/docs/extensions/extra.md @@ -22,7 +22,7 @@ supported extensions are included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/fenced_code_blocks.md b/docs/extensions/fenced_code_blocks.md index 521d97a5e..b744c0bf8 100644 --- a/docs/extensions/fenced_code_blocks.md +++ b/docs/extensions/fenced_code_blocks.md @@ -11,7 +11,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/footnotes.md b/docs/extensions/footnotes.md index d1290bf32..d596bcf98 100644 --- a/docs/extensions/footnotes.md +++ b/docs/extensions/footnotes.md @@ -13,7 +13,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/legacy_attrs.md b/docs/extensions/legacy_attrs.md index d03b6f191..4313e70ed 100644 --- a/docs/extensions/legacy_attrs.md +++ b/docs/extensions/legacy_attrs.md @@ -13,7 +13,7 @@ users who have existing documents which use the syntax. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/legacy_em.md b/docs/extensions/legacy_em.md index 69bcf7d72..8f9ebb94b 100644 --- a/docs/extensions/legacy_em.md +++ b/docs/extensions/legacy_em.md @@ -19,7 +19,7 @@ would result in this output: `connectedwords_`. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/md_in_html.md b/docs/extensions/md_in_html.md index 96275e5d7..75476fdc7 100644 --- a/docs/extensions/md_in_html.md +++ b/docs/extensions/md_in_html.md @@ -8,7 +8,7 @@ An extension that parses Markdown inside of HTML tags. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/meta_data.md b/docs/extensions/meta_data.md index 28c467abd..242e2fb33 100644 --- a/docs/extensions/meta_data.md +++ b/docs/extensions/meta_data.md @@ -18,7 +18,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/nl2br.md b/docs/extensions/nl2br.md index c0787ebde..968dc1c75 100644 --- a/docs/extensions/nl2br.md +++ b/docs/extensions/nl2br.md @@ -13,7 +13,7 @@ hard breaks; like StackOverflow and [GitHub][] flavored Markdown do. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/sane_lists.md b/docs/extensions/sane_lists.md index 60a087f85..414d33d4f 100644 --- a/docs/extensions/sane_lists.md +++ b/docs/extensions/sane_lists.md @@ -13,7 +13,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/smarty.md b/docs/extensions/smarty.md index a6653838d..8dfb9b1b2 100644 --- a/docs/extensions/smarty.md +++ b/docs/extensions/smarty.md @@ -52,7 +52,7 @@ extension_configs = { !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/tables.md b/docs/extensions/tables.md index 63650afaa..da44359d9 100644 --- a/docs/extensions/tables.md +++ b/docs/extensions/tables.md @@ -12,7 +12,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/toc.md b/docs/extensions/toc.md index 814a1c00e..9c7432057 100644 --- a/docs/extensions/toc.md +++ b/docs/extensions/toc.md @@ -13,7 +13,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an diff --git a/docs/extensions/wikilinks.md b/docs/extensions/wikilinks.md index 173433683..aff9ea6e7 100644 --- a/docs/extensions/wikilinks.md +++ b/docs/extensions/wikilinks.md @@ -13,7 +13,7 @@ This extension is included in the standard Markdown library. !!! Note - This extension is in __maintanence mode__. We will continue to fix bugs + This extension is in __maintenance mode__. We will continue to fix bugs and keep it up-to-date with the core parser, but no new features or changes in behavior will be made. If you need a feature that this extension does not offer, then you have three options (1) find an