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

Support MyST table column alignment #531

Merged
merged 2 commits into from Sep 25, 2022
Merged

Commits on Sep 24, 2022

  1. Support MyST table column alignment

    With Markdown tables, one can control column alignment:
    
    ```markdown
    | left | center | right |
    | :--- | :----: | ----: |
    | a    | b      | c     |
    ```
    
    To enable this non-standard (in docutils) feature, MyST-Parser adds CSS classes to the `td`/`th`,
    which then require implementation by the HTML themes.
    chrisjsewell committed Sep 24, 2022
    Copy the full SHA
    362990f View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    9df4171 View commit details
    Browse the repository at this point in the history