Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update markdown2 to 2.5.2 #1224

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

pyup-bot
Copy link
Collaborator

This PR updates markdown2 from 2.2.1 to 2.5.2.

Changelog

2.5.2

- [pull 605] Add support for Python 3.13, drop EOL 3.8
- [pull 607] Fix `middle-word-em` extra preventing strongs from being recognized (606)
- [pull 609] Add option to output to file in CLI (608)
- [pull 612] Fix footnote labels appearing out-of-order (536)
- [pull 613] Fix smarty pants extra not triggering when it should (611)

2.5.1

- [pull 590] Fix underscores within bold text getting emphasized (589)
- [pull 591] Add Alerts extra
- [pull 595] Fix img alt text being processed as markdown (594)
- [pull 598] Add `link-shortrefs` extra (597)
- [pull 600] Use urandom for SECRET_SALT
- [pull 602] Fix XSS issue in safe mode (601)
- [pull 604] Fix XSS injection in image URLs (603)

2.5.0

- [pull 519] Add support for custom extras
- [pull 519] Drop Python 3.5 support
- [pull 568] Add `prepend` arg to toc extra (397)
- [pull 569] Process HTML comments as markdown in 'escape' safe mode
- [pull 570] Fix syntax warnings in test suite
- [pull 572] Process inline tags as HTML blocks when they span multiple lines (571)
- [pull 573] Add new LaTeX Extra
- [pull 576] Fix `html`, `head` and `body` tags being wrapped in `<p>` tags (575)
- [pull 578] Graceful handling of broken lists when cuddled-lists extra is enabled
- [pull 581] Add type hints (562)
- [pull 581] Drop Python 3.6 and 3.7 support
- [pull 582] Fix fenced code blocks breaking lists (580)
- [pull 586] Fix 583 by tweaking incomplete tag regex
- [pull 587] Fix AssertionError on malformed HTML (584)

2.4.13

- [pull 559] Allow cuddled tables (557)
- [pull 560] Fix `markdown-in-html` not always splitting HTML tags into separate lines (558)
- [pull 564] Fix incomplete comments in safe mode not being escaped (563)
- [pull 566] Fix crash in `markdown-in-html` extra (565)

2.4.12

- [pull 547] Update `markdown-in-html` extra to handle markdown on same line as HTML (546)
- [pull 550] Fix tables with trailing whitespace not being recognized (549)
- [pull 545] Fix multiple instances of strong emphasis (`**`) in one line (541)
- [pull 556] Fix incorrect parsing of links after square brackets (552)

2.4.11

- [pull 524] Fix angles being escaped in style blocks (issue 523)
- [pull 527] Fix base64 images being corrupted in safe mode (issue 526)
- [pull 529] Add `breaks` extra with ability to hard break on backslashes (issue 525)
- [pull 532] Fix 493 persisting when `code-friendly` extra enabled
- [pull 535] Update `_slugify` to use utf-8 encoding (issue 534)
- [pull 536] Maintain order of appearance in footnotes
- [pull 538] Include HTML headers in TOC
- [pull 540] Add mechanism to prevent header ID counter resetting (issue 530)

2.4.10

- [pull 520] Allow more relative links in safe mode (issue 517)
- [pull 521] Always restore hashed HTML blocks (issue 185)
- [pull 522] Add `middle-word-em` extra

2.4.9

- [pull 500] Add `<thead>` tag to html-classes extra
- [pull 501] Fix link patterns extra matching against internal hashes
- [pull 502] Replace deprecated `optparse` with `argparse`
- [pull 506] Fix `_uniform_outdent` failing with empty strings (issue 505)
- [pull 509] Fix HTML elements not unhashing correctly (issue 508)
- [pull 511] Remove deprecated `imp` module (issue 510)
- [pull 512] Allow link patterns to be passed via extras dict
- [pull 513] Fix relative links not working in safe mode (issue 254)

2.4.8

- [pull 499] Fix images not being procesed correctly (498)

2.4.7

- [pull 483] Fix hashing nested HTML blocks
- [pull 486] Fix backslash being unable to escape raw HTML tags
- [pull 482] Add support for telegram spoiler in extras
- [pull 485] mermaid support
- [pull 487] Fix escaping ampersands in hrefs
- [pull 490] Fix indented codeblocks inside fences (489)
- [pull 490] Remove `code-color` extra

2.4.6

- [pull 477] Feature wavedrom support
- [pull 480] Fix mixing ordered and un-ordered lists combining into single list type

2.4.5

- [pull 466] Add optional dependencies to `setup.py`

2.4.4

- [pull 439] Fix TypeError if html-classes extra is None
- [pull 441] Remove Python2 support
- [pull 445] Replace `<strike>` with `<s>` in strike extra
- [pull 446] Fix link patterns extra applying within links
- [pull 443] create proper entry point
- [pull 449] Codespans inside link text issue344
- [pull 451] Underline and HTML comments
- [pull 453] Links with brackets
- [pull 454] Fix emacs local variable one-liners
- [pull 457] Example of the current mixed-paragraph mode behavior in lists
- [pull 455] Fix code block indentation in lists
- [pull 434] Fix filter bypass leading to XSS (362)
- [pull 464] Fix html-classes extra not applying to code spans
- [pull 462] Fix pygments block matching
- [pull 462] Fix pyshell blocks in blockquotes
- [pull 463] Fix multilevel lists
- [pull 468] Remove `_uniform_outdent_limit` function
- [pull 470] Add support for ordered lists that don't start at 1. (469)
- [pull 472] Fix `AssertionError` with lazy numbered lists (issue 471)
- [pull 475] Add `<ul>` and `<ol>` tags to html-classes extra (352)
- [pull 473] XSS test and fix

2.4.3

- [pull 413] Fix meta indentation
- [pull 414] Fix code surrounded by blank lines inside blockquote fenced code blocks
- [pull 417] Fix inline code pipe symbol within tables (issue 399)
- [pull 418] Fix code block parsing error (issue 327)
- [pull 419] Fix hr block created when not supposed to (issue 400)
- [pull 421] Fix backslashes removed by adjacent code blocks (issues 369 and 412)
- [pull 420] Fix md5-* in resulting HTML when several code blocks follow one by one (issue 355)
- [pull 422] Fix excessive `<br>` tags in lists using break-on-newline extra (issue 394)
- [pull 424] Standardize key and value definitions for metadata extra (issue 423)
- [pull 427] Fix fenced code blocks breaking lists (issue 426)
- [pull 429] Fix catastrophic backtracking (Regex DoS) in pyshell blocks.
- [pull 431] Fix incorrect indentation of fenced code blocks within lists
- [pull 436] RST admonitions
- [pull 430] Improve error message if link_patterns forgotten
- [pull 437] fix compatibility with pygments 2.12

2.4.2

- [pull 408] Fix for fenced code blocks issue 396
- [pull 410] Be more strict on auto linking urls, RE DOS fix

2.4.1

- [pull 389] Tables extra: allow whitespace at the end of the underline row
- [pull 392] Pyshell extra: enable syntax highlighting if `fenced-code-blocks` is loaded.
- [pull 402] Regex DOS bandaid fix

2.4.0

- [pull 377] Fixed bug breaking strings elements in metadata lists
- [pull 380] When rendering fenced code blocks, also add the `language-LANG` class
- [pull 387] Regex DoS fixes

2.3.10

- [pull 356] Don't merge sequential quotes into a single blockquote
- [pull 357] use style=text-align for table alignment
- [pull 360] introduce underline extra
- [pull 368] Support for structured and nested values in metadata
- [pull 371] add noopener to external links

2.3.9

- [pull 335] Added header support for wiki tables
- [pull 336] Reset _toc when convert is run
- [pull 353] XSS fix
- [pull 350] XSS fix

2.3.8

- [pull 317] Temporary fix to issue 150
- [pull 319] Stop XML escaping the body of a link
- [pull 322] Don't auto link patterns surrounded by triple quotes
- [pull 324] Add class configurability to the enclosing tag
- [pull 328] Accept [X] as marked task

2.3.7

- [pull 306] Drop support for legacy Python versions
- [pull 307] Fix syntax highlighting test cases that depend on Pygments output
- [pull 308] Add support for Python 3.7
- [pull 304] Add Wheel package support
- [pull 312] Fix toc_depth initialization regression
- [pull 315] XSS fix

2.3.6

- [pull 282] Add TOC depth option
- [pull 283] Fix to add TOC html to output via CLI
- [pull 284] Do not remove anchors in safe_mode
- [pull 288] fixing cuddled-lists with a single list item
- [pull 292] Fix Wrong rendering of last list element
- [pull 295] link-patterns fix
- [pull 300] Replace a deprecated method
- [pull 301] DeprecationWarning: invalid escape sequence
- [pull 302] Fix "make test" in Python 3
- [pull 303] Fix CVE-2018-5773

2.3.5

- [pull 238] Fenced code blocks lang with leading space
- [pull 260] Search for items only within metadata header
- [pull 264] highlightjs language class support
- [pull 265] FIPS compliance
- [pull 274] Fix for double amp replacement inside link title

2.3.4

- [pull 243] task list extra visual changes
- [pull 245] Don't let "target-blank-lines" break footnotes
- [pull 247] Translatable footnote titles
- [pull 252] Add pipe escaping in table extension

2.3.3

- [pull 236] Fix for safe_mode links regression
- [pull 235] Fix for overgreedy regex in metadata
- [pull 237] Fix for header-ids extra non-alpha character issue

2.3.2

- [pull 204] toc extra Python 3 error
- [pull 207] Performance improvements
- [pull 210] Leading paragraph with fenced code blocks
- [pull 212] Target blank links extra
- [pull 215] Optional metadata fences
- [pull 218] Github style task list
- [pull 220] Numbering extra
- [pull 224] Metadata in blocks
- [pull 230] safe_mode changes

2.3.1

- [pull 131] Markdown "spoiler" extra
- [pull 170] html-classes support for table tags
- [pull 190] "strike" extra
- [pull 201] Allow empty table cells

2.3.0

- New "tables" extra for table syntax that matches GFM
<https://help.github.com/articles/github-flavored-markdown#tables> and
PHP-Markdown Extra <https://michelf.ca/projects/php-markdown/extra/#table>.
For example:

     | Header 1 | *Header* 2 |
     | -------- | -------- |
     | `Cell 1` | [Cell 2](http://example.com) link |
     | Cell 3   | **Cell 4** |

See <https://github.com/trentm/python-markdown2/blob/master/test/tm-cases/tables.text>
for examples and edge cases.

If you have documents using the 'wiki-tables' syntax and want to convert to the
'tables' syntax, there is a script to help with that here:
<https://github.com/trentm/python-markdown2/blob/master/tools/wiki-tables-to-tables.py>

2.2.3

- [issue 165] Fix an edge case in list parsing.

2.2.2

- [pull 156] Footnotes XML compatibility.
- [pull 157] Horizontal rule minimum length.
- [pull 162] Fix escaping fenced code block with safe mode
- [pull 163] Fix code highlight with safe mode
Links

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant