<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/markdown, branch master</title>
<subtitle>github.com: waylan/Python-Markdown.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-markdown.git/'/>
<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://91.123.203.49/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>Bump to version to 3.4.3</title>
<updated>2023-03-23T13:13:33+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2023-03-23T12:58:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-markdown.git/commit/?id=be1c2839dd587a858f91c710e56667cba9f5329d'/>
<id>be1c2839dd587a858f91c710e56667cba9f5329d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version to 3.4.2</title>
<updated>2023-03-22T17:03:59+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2023-03-22T15:56:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-markdown.git/commit/?id=6a85e4d4e28e105d4e772a6c2ab8188ddeba1644'/>
<id>6a85e4d4e28e105d4e772a6c2ab8188ddeba1644</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch from setup.py to pyproject.toml (#1324)</title>
<updated>2023-03-22T15:42:59+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2023-03-22T15:42:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-markdown.git/commit/?id=b81bf17ef4928039bebd43c4d5426c6ba87e1076'/>
<id>b81bf17ef4928039bebd43c4d5426c6ba87e1076</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Consider &lt;html&gt; a block-level HTML element (#1309)</title>
<updated>2022-12-02T13:41:22+00:00</updated>
<author>
<name>kernc</name>
<email>kerncece@gmail.com</email>
</author>
<published>2022-12-02T13:41:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-markdown.git/commit/?id=a8ad6fc8ba687736145b5dff3b0c53839d07ef1e'/>
<id>a8ad6fc8ba687736145b5dff3b0c53839d07ef1e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>codehilite: Update Pygments URL</title>
<updated>2022-11-28T15:29:56+00:00</updated>
<author>
<name>Letu Ren</name>
<email>fantasquex@gmail.com</email>
</author>
<published>2022-11-24T12:48:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-markdown.git/commit/?id=e3604b473f01787e5df0a3fed6c50e3a494c6362'/>
<id>e3604b473f01787e5df0a3fed6c50e3a494c6362</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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://91.123.203.49/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://91.123.203.49/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>Bump version to 3.4.1</title>
<updated>2022-07-15T19:10:51+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2022-07-15T19:06:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-markdown.git/commit/?id=f588d8b0f2877c6aa5ac352d27c6f37bdbd41869'/>
<id>f588d8b0f2877c6aa5ac352d27c6f37bdbd41869</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix import issue with importlib.util</title>
<updated>2022-07-15T19:00:52+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan.limberg@icloud.com</email>
</author>
<published>2022-07-15T18:51:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-markdown.git/commit/?id=3c5812649fb53ad1e97fb3ef71a79e130b2e0f88'/>
<id>3c5812649fb53ad1e97fb3ef71a79e130b2e0f88</id>
<content type='text'>
Fixes #1274.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #1274.
</pre>
</div>
</content>
</entry>
</feed>
