diff options
author | Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> | 2025-02-06 10:40:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-06 11:40:43 +0100 |
commit | a64e0a553b7a3a7d6270414546400e6dd26dd95c (patch) | |
tree | 0310dfa4ed9f34dece1a81797e1748fe6d73af11 /Lib/_markupbase.py | |
parent | 052ca8ffe8c57afb9c270fcc4eb5f390cbcfb8ce (diff) | |
download | cpython-a64e0a553b7a3a7d6270414546400e6dd26dd95c.tar.gz cpython-a64e0a553b7a3a7d6270414546400e6dd26dd95c.zip |
_markupbase.py: Use a permalink for the analysis of MS-Word extensions (GH-129017)
Update _markupbase.py
Diffstat (limited to 'Lib/_markupbase.py')
-rw-r--r-- | Lib/_markupbase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_markupbase.py b/Lib/_markupbase.py index 3ad7e279960..614f0cd16dd 100644 --- a/Lib/_markupbase.py +++ b/Lib/_markupbase.py @@ -13,7 +13,7 @@ _commentclose = re.compile(r'--\s*>') _markedsectionclose = re.compile(r']\s*]\s*>') # An analysis of the MS-Word extensions is available at -# http://www.planetpublish.com/xmlarena/xap/Thursday/WordtoXML.pdf +# http://web.archive.org/web/20060321153828/http://www.planetpublish.com/xmlarena/xap/Thursday/WordtoXML.pdf _msmarkedsectionclose = re.compile(r']\s*>') |