Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: matthewwithanm/python-markdownify
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.12.1
Choose a base ref
...
head repository: matthewwithanm/python-markdownify
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.13.0
Choose a head ref
  • 12 commits
  • 9 files changed
  • 6 contributors

Commits on Apr 4, 2024

  1. Avoid inline styles inside <code> / <pre> conversion (#117)

    * Avoid inline styles inside `<code>` / `<pre>` conversion
    
    The check used for this is analogous to that used to avoid escaping
    potential markup characters inside such tags.
    
    Fixes #103
    
    ---------
    
    Co-authored-by: AlexVonB <[email protected]>
    jsm28 and AlexVonB authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    2bd0772 View commit details
    Browse the repository at this point in the history
  2. Escape all characters with Markdown significance (#118)

    * Escape all characters with Markdown significance
    
    There are many punctuation characters that sometimes have significance
    in Markdown; more systematically escape them all (based on a new
    escape_misc configuration option).
    
    A limited attempt is made to limit the escaping of '.' and ')' to the
    context where they might have Markdown significance (after a number,
    where they can indicate an ordered list item); no such attempt is made
    for the other characters (and even that limiting of '.' and ')' may
    not be entirely safe in all cases, as it's possible the HTML could
    have the number outside the block being escaped in one go,
    e.g. `<span>1</span>.`.
    
    ---------
    
    Co-authored-by: AlexVonB <[email protected]>
    jsm28 and AlexVonB authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    46af45b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    43dbe20 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2024

  1. Configuration menu
    Copy the full SHA
    c1672ae View commit details
    Browse the repository at this point in the history
  2. handle un-parsable colspan values

    fixes #126
    AlexVonB committed Jun 23, 2024
    Configuration menu
    Copy the full SHA
    2ec3338 View commit details
    Browse the repository at this point in the history
  3. Special-case use of HTML tags for converting <sub> / <sup> (#119)

    Allow different strings before / after `<sub>` / `<sup>` content
    
    In particular, this allows setting `sub_symbol='<sub>'`,
    `sup_symbol='<sup>'`, to use raw HTML in the output when
    converting subscripts and superscripts.
    jsm28 authored Jun 23, 2024
    Configuration menu
    Copy the full SHA
    7861b33 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50b4640 View commit details
    Browse the repository at this point in the history
  5. handle ol start value is not number (#127)

    Co-authored-by: Mico <[email protected]>
    microdnd and Mico authored Jun 23, 2024
    Configuration menu
    Copy the full SHA
    51390d7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0a5c89a View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2024

  1. fix pytest version to 8

    AlexVonB committed Jul 14, 2024
    Configuration menu
    Copy the full SHA
    75a678d View commit details
    Browse the repository at this point in the history
  2. bump to v0.13.0

    AlexVonB committed Jul 14, 2024
    Configuration menu
    Copy the full SHA
    f6c8daf View commit details
    Browse the repository at this point in the history
  3. Merge branch 'develop'

    AlexVonB committed Jul 14, 2024
    Configuration menu
    Copy the full SHA
    8c810eb View commit details
    Browse the repository at this point in the history
Loading