-
Notifications
You must be signed in to change notification settings - Fork 714
fix: the RFP team table formatting #1066
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
Open
Ayaz-Microsoft
wants to merge
5
commits into
dev
Choose a base branch
from
bugfix/ayaz
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
ab6dd0a
Add markdown table normalization utilities and integrate into orchest…
Ayaz-Microsoft 81b0560
pylint fix
Ayaz-Microsoft 6fdac57
fix failed test
Ayaz-Microsoft 8db5b8a
Fix Bug 47810: normalize collapsed markdown tables in final/agent res…
Ayaz-Microsoft 780049a
Merge branch 'bugfix/ayaz' of https://github.com/microsoft/Multi-Agen…
Ayaz-Microsoft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,70 @@ | ||
| """Shared GFM table repair utilities (Bug 47810).""" | ||
|
|
||
| import re | ||
| from typing import List, Optional | ||
|
|
||
| # Matches a GFM delimiter cell: "---", ":--", "--:", ":-:". | ||
| _TABLE_DELIM_CELL_RE = re.compile(r"^\s*:?-+:?\s*$") | ||
|
|
||
|
|
||
| def reflow_collapsed_table_line(line: str) -> Optional[List[str]]: | ||
| """Rebuild a GFM table flattened onto one line; return None if not collapsed.""" | ||
| if line.count("|") < 4 or "-" not in line: | ||
| return None | ||
|
|
||
| first = line.index("|") | ||
| prefix = line[:first].rstrip() | ||
| raw = line[first:].rstrip() | ||
|
|
||
| tokens = raw.split("|") | ||
| if tokens and tokens[0].strip() == "": | ||
| tokens = tokens[1:] | ||
| if tokens and tokens[-1].strip() == "": | ||
| tokens = tokens[:-1] | ||
| if not tokens: | ||
| return None | ||
|
|
||
| # Whitespace-only tokens mark the boundary between flattened rows. | ||
| rows: List[List[str]] = [] | ||
| current: List[str] = [] | ||
| for tok in tokens: | ||
| if tok.strip() == "": | ||
| if current: | ||
| rows.append(current) | ||
| current = [] | ||
| else: | ||
| current.append(tok) | ||
| if current: | ||
| rows.append(current) | ||
|
|
||
| # Require a header plus a delimiter row; leaves well-formed tables untouched. | ||
| if len(rows) < 2 or not all(_TABLE_DELIM_CELL_RE.match(c) for c in rows[1]): | ||
| return None | ||
|
|
||
| n = len(rows[1]) | ||
| if n == 0 or len(rows[0]) != n: | ||
| return None | ||
|
|
||
| rendered = ["| " + " | ".join(cell.strip() for cell in row) + " |" for row in rows] | ||
|
|
||
| result: List[str] = [] | ||
| if prefix: | ||
| result.append(prefix) | ||
| result.append("") # Blank line so GFM starts a fresh table block. | ||
| result.extend(rendered) | ||
| return result | ||
|
|
||
|
|
||
| def normalize_markdown_tables(text: str) -> str: | ||
| """Repair collapsed GFM tables; non-table text is returned unchanged.""" | ||
| if not text or "|" not in text or "-" not in text: | ||
| return text | ||
|
Ayaz-Microsoft marked this conversation as resolved.
|
||
|
|
||
| out: List[str] = [] | ||
| for line in text.split("\n"): | ||
| reflowed = reflow_collapsed_table_line(line) | ||
| if reflowed is None: | ||
| out.append(line) | ||
| else: | ||
| out.extend(reflowed) | ||
| return "\n".join(out) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.