Partial fix for 1078: [refactor: Simplify HTML generation in PyDataFrame by extracting helper functions] #1087
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.
Which issue does this PR close?
Partial fix for #1078
Rationale for this change
The rendering logic for DataFrame HTML output was previously monolithic. By modularizing the generation of HTML structure, styles, and table rows into clearly named helper functions, we improve readability, testability, and long-term maintainability.
This refactor lays the foundation for easier customization.
What changes are included in this PR?
get_html_style_definitions()
get_html_table_opening()
get_html_table_header()
create_batch_formatters()
get_html_table_rows()
andformat_table_cell()
get_html_js_functions()
Are there any user-facing changes?
No functional changes for end users. The generated HTML and behavior remain the same, but the underlying implementation is now modular and easier to maintain.