<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/tests, branch master</title>
<subtitle>github.com: waylan/Python-Markdown.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/'/>
<entry>
<title>Port all smarty tests to the new framework</title>
<updated>2023-05-16T15:42:55+00:00</updated>
<author>
<name>Dmitry Shachnev</name>
<email>mitya57@gmail.com</email>
</author>
<published>2023-05-13T18:56:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=965c06c398a394b1da06651bb4ed62be7609a946'/>
<id>965c06c398a394b1da06651bb4ed62be7609a946</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use pyspelling to check spelling.</title>
<updated>2023-04-06T23:21:46+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2023-04-06T23:21:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=07b8b2c90a92c20fb0740d5527c6a219d2afb7ae'/>
<id>07b8b2c90a92c20fb0740d5527c6a219d2afb7ae</id>
<content type='text'>
In addition to checking the spelling in our documentation, we are now also checking the spelling of the README.md and similar files as well as comments in our Python code.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In addition to checking the spelling in our documentation, we are now also checking the spelling of the README.md and similar files as well as comments in our Python code.</pre>
</div>
</content>
</entry>
<entry>
<title>Improve standalone * and _ parsing.</title>
<updated>2022-11-15T16:55:37+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2022-11-14T19:26:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=939a2fe70580c8e6b7e10af82ebdd6c8c72e019a'/>
<id>939a2fe70580c8e6b7e10af82ebdd6c8c72e019a</id>
<content type='text'>
The `NOT_STRONG_RE` regex matchs 1, 2, or 3 * or _ which are surrounded by
white space to prevent them from being parsed as tokens. However, the
surrounding white space should not be consumed by the regex, which is why
lookhead and lookbehind assertions are used. As `^` cannot be matched in a
lookbehind assertion, it is left outside the assertion, but as it is zero
length, that should not matter.

Tests added and/or updated to cover various edge cases. Fixes #1300.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `NOT_STRONG_RE` regex matchs 1, 2, or 3 * or _ which are surrounded by
white space to prevent them from being parsed as tokens. However, the
surrounding white space should not be consumed by the regex, which is why
lookhead and lookbehind assertions are used. As `^` cannot be matched in a
lookbehind assertion, it is left outside the assertion, but as it is zero
length, that should not matter.

Tests added and/or updated to cover various edge cases. Fixes #1300.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: Fix a few typos</title>
<updated>2022-07-25T14:08:36+00:00</updated>
<author>
<name>Tim Gates</name>
<email>tim.gates@iress.com</email>
</author>
<published>2022-07-20T22:14:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=eff6c3a0415cb63bc0b38c29b5a7f584619e3c1c'/>
<id>eff6c3a0415cb63bc0b38c29b5a7f584619e3c1c</id>
<content type='text'>
There are small typos in:
- docs/extensions/fenced_code_blocks.md
- docs/extensions/meta_data.md
- markdown/extensions/codehilite.py
- markdown/extensions/footnotes.py
- tests/test_legacy.py

Fixes:
- Should read `delimiters` rather than `deliminators`.
- Should read `shebang` rather than `sheband`.
- Should read `processing` rather than `proccesing`.
- Should read `backslash` rather than `blackslash`.

Signed-off-by: Tim Gates &lt;tim.gates@iress.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There are small typos in:
- docs/extensions/fenced_code_blocks.md
- docs/extensions/meta_data.md
- markdown/extensions/codehilite.py
- markdown/extensions/footnotes.py
- tests/test_legacy.py

Fixes:
- Should read `delimiters` rather than `deliminators`.
- Should read `shebang` rather than `sheband`.
- Should read `processing` rather than `proccesing`.
- Should read `backslash` rather than `blackslash`.

Signed-off-by: Tim Gates &lt;tim.gates@iress.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Move backslash unescaping to treeprocessor</title>
<updated>2022-07-15T12:38:34+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2022-07-15T12:38:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=c0f6e5a31ea8e7fe98910a0523144c2a96fa9bf1'/>
<id>c0f6e5a31ea8e7fe98910a0523144c2a96fa9bf1</id>
<content type='text'>
By unescaping backslash escapes in a treeprocessor, the text is properly
escaped during serialization. Fixes #1131.

As it is recognized that various third-party extensions may be calling the
old class at `postprocessors.UnescapePostprocessor` the old class remains
in the codebase, but has been deprecated and will be removed in a future
release. The new class `treeprocessors.UnescapeTreeprocessor` should be
used instead.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By unescaping backslash escapes in a treeprocessor, the text is properly
escaped during serialization. Fixes #1131.

As it is recognized that various third-party extensions may be calling the
old class at `postprocessors.UnescapePostprocessor` the old class remains
in the codebase, but has been deprecated and will be removed in a future
release. The new class `treeprocessors.UnescapeTreeprocessor` should be
used instead.</pre>
</div>
</content>
</entry>
<entry>
<title>fixed some spelling mistakes</title>
<updated>2022-06-17T12:46:44+00:00</updated>
<author>
<name>Bastian Venthur</name>
<email>mail@venthur.de</email>
</author>
<published>2022-06-17T12:46:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=77fb7f1b51076becff488a9b42ef2883153262a0'/>
<id>77fb7f1b51076becff488a9b42ef2883153262a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove previously deprecated objects</title>
<updated>2022-05-27T13:13:09+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2022-05-27T13:13:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=a767b2daaad78ba32d45a4f1dabb7c5e218f030a'/>
<id>a767b2daaad78ba32d45a4f1dabb7c5e218f030a</id>
<content type='text'>
This completely removes all objects which were deprecated in version 3.0 (this change will be included in version 3.4). Given the time that has passed, and the fact that older unmaintained extensions are not likely to support the new minimum Python version, this is little concern about breaking older extensions.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This completely removes all objects which were deprecated in version 3.0 (this change will be included in version 3.4). Given the time that has passed, and the fact that older unmaintained extensions are not likely to support the new minimum Python version, this is little concern about breaking older extensions.</pre>
</div>
</content>
</entry>
<entry>
<title>Update PrettifyTreeprocessor `&lt;pre&gt;&lt;code&gt;` handling</title>
<updated>2022-05-27T13:01:57+00:00</updated>
<author>
<name>fourpoints</name>
<email>30053843+fourpoints@users.noreply.github.com</email>
</author>
<published>2022-05-27T13:01:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=dc434df776fe9af36fe07c4e782e51035ce30e1f'/>
<id>dc434df776fe9af36fe07c4e782e51035ce30e1f</id>
<content type='text'>
Fixes #1263.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #1263.</pre>
</div>
</content>
</entry>
<entry>
<title>Pass language to Pygments formatter in CodeHilite</title>
<updated>2022-05-18T18:08:55+00:00</updated>
<author>
<name>Liang-Bo Wang</name>
<email>me@liang2.tw</email>
</author>
<published>2022-05-18T18:08:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=12c3378ab9a46fae416a7bb5549e3f123a11d22a'/>
<id>12c3378ab9a46fae416a7bb5549e3f123a11d22a</id>
<content type='text'>
* Add an extra option `lang_str` to pass the language of the code block
to the specified Pygments formatter.
* Include an example custom Pygments formatter in the documentation
that includes the language of the code in the output using the new option.

Resolves #1255.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add an extra option `lang_str` to pass the language of the code block
to the specified Pygments formatter.
* Include an example custom Pygments formatter in the documentation
that includes the language of the code in the output using the new option.

Resolves #1255.</pre>
</div>
</content>
</entry>
<entry>
<title>Use `@deprecated` for __setitem__ and __delitem__ of Registry.</title>
<updated>2022-05-16T18:23:39+00:00</updated>
<author>
<name>L</name>
<email>leven.cn@gmail.com</email>
</author>
<published>2022-05-16T18:23:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=7334ecd4c747f9a36351a5073b55c2a606917ef9'/>
<id>7334ecd4c747f9a36351a5073b55c2a606917ef9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
