-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Markdown tables #2977
Markdown tables #2977
Conversation
Codecov ReportPatch coverage:
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## master #2977 +/- ##
==========================================
- Coverage 98.31% 94.70% -3.61%
==========================================
Files 74 74
Lines 7949 8013 +64
==========================================
- Hits 7815 7589 -226
- Misses 134 424 +290
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
@@ -4,6 +4,9 @@ | |||
|
|||
from markdown_it import MarkdownIt | |||
from markdown_it.token import Token | |||
from typing_extensions import get_args | |||
|
|||
from rich.table import Table |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use relative imports to match the rest of the code base.
Type of changes
Checklist
Description
Adds support for Markdown tables.
Includes support for column alignment.