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 .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: gettalong/kramdown
base: REL_2_3_0
Choose a base ref
head repository: gettalong/kramdown
compare: REL_2_3_1
Choose a head ref
  • 15 commits
  • 45 files changed
  • 6 contributors

Commits on Dec 26, 2020

Commits on Jan 14, 2021

  1. Update sponsor information

    gettalong committed Jan 14, 2021

Commits on Mar 14, 2021

  1. Restrict Rouge formatters to Rouge::Formatters namespace

    ff0218a added support for specifying custom Rouge formatters with the
    constraint that the formatter be in theRouge::Formatters namespace, but
    it did not actually enforce this constraint. For example, this is valid:
    
    ```ruby
    Rouge::Formatters.const_get('CSV')
    => CSV
    ```
    
    Adding the `false` parameter to `const_get` prevents this:
    
    ```ruby
    Rouge::Formatters.const_get('CSV', false)
    NameError: uninitialized constant Rouge::Formatters::CSV
    ```
    stanhu committed Mar 14, 2021

Commits on Mar 17, 2021

  1. Fix conversion to kramdown of empty raw html td/th tags

    Those tags must not be self-closed when empty.
    gettalong committed Mar 17, 2021
  2. fix: fix LaTeX entity conversion group location

    This correctly places the `{}` group after the LaTeX commands used for
    conversion, rather than before. It appears this has been broken since
    edbd1fd.
    
    Also updates the span/text_substitutions/entities test to include
    `<span>`, which will be converted by the old converter to
    `{}\textlessspan{}\textgreater`, which should instead be
    `\textless{}span\textgreater{}`. The former will fail to compile, and should
    throw an error.
    aschmitz authored and gettalong committed Mar 17, 2021
  3. Update setup.rb

    setup.rb:283: warning: key "bin-dir" is duplicated and overwritten on line 284
    danielbair authored and gettalong committed Mar 17, 2021
  4. use block ial for standalone images

    tyehle authored and gettalong committed Mar 17, 2021