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: executablebooks/MyST-Parser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.1
Choose a base ref
...
head repository: executablebooks/MyST-Parser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.0.0
Choose a head ref
  • 6 commits
  • 54 files changed
  • 2 contributors

Commits on Jun 18, 2024

  1. 📚 Fix typo (#940)

    meli-lewis authored Jun 18, 2024
    Configuration menu
    Copy the full SHA
    d448abf View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Configuration menu
    Copy the full SHA
    ad0f24f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d3d7fbb View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. ⬆️ Support python>=3.10, sphinx >=7,<9, docutils>=0.19,<0.22 (#952)

    dropping support for lower versions
    chrisjsewell authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    401e08c View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. 👌 Improve footnote def/ref warnings and translations (#931)

    Footnotes are now parsed similar to the corresponding restructuredtext, in that resolution (between definitions and references) and ordering is now deferred to transforms on the doctree.
    
    This allows for the proper interaction with other docutils/sphinx transforms, including those that perform translations.
    
    In addition, an upstream improvement to unreferenced footnote definitions is also added here: sphinx-doc/sphinx#12730, so that unreferenced and duplicate definitions are correctly warned about, e.g.:
    
    ```
    source/index.md:1: WARNING: Footnote [1] is not referenced. [ref.footnote]
    source/index.md:4: WARNING: Duplicate footnote definition found for label: 'a' [ref.footnote]
    ```
    
    It is of note that warnings for references with no corresponding definitions are deferred to docutils to handle, e.g. for `[^a]` with no definition:
    
    ```
    source/index.md:1: ERROR: Too many autonumbered footnote references: only 0 corresponding footnotes available. [docutils]
    source/index.md:1: ERROR: Unknown target name: "a". [docutils]
    ```
    
    These warning messages are a little obscure, and it would be ideal that one clear warning was emitted for the issue.
    However, it is non-trivial in this extension; to both suppress the existing warnings, and then replace them with a better one,
    so for now we don't do it here, and ideally this would be improved upstream in docutils.
    chrisjsewell authored Aug 5, 2024
    Configuration menu
    Copy the full SHA
    850f7c9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ce37be5 View commit details
    Browse the repository at this point in the history
Loading