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

Fix bug of Sphinx's .. code:: directive not recognizing :class: option #9688

Merged

Commits on Oct 3, 2021

  1. Fix bug of Sphinx's .. code:: directive not recognizing :class: option

    Sphinx's own .. code:: directive (but not docutils') does not recognise
    the :class: option but only the :classes: option.  This is probably due
    to an oversight that the user-visible option is called ``:class:`` while
    the Python attribute is called ``classes`` (to not collide with the
    keyword ``class``).
    
    Fix it by checking for the option ``class`` instead of ``classes``.
    latosha-maltba committed Oct 3, 2021
    Copy the full SHA
    9c53175 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2021

  1. Copy the full SHA
    23bb8be View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    bbccb49 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    d412acd View commit details
    Browse the repository at this point in the history