We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
If escape=False is specified, this dataframe fill fail horribly…
escape=False
df = DataFrame(data={ 'test': ['<a href="http://reallylongurlthateasilyislongerthan50characters.htm">short linkname</a>'], })
…as the <td><a href="http://reallylongurlthateasilyislongertha...</td> will be broken HTML, and the a tag is closed by the closing td tag.
<td><a href="http://reallylongurlthateasilyislongertha...</td>
a
td
i propose that display.max_rows is ignored for cells that contain unescaped HTML tags (i.e. at least one < character)
display.max_rows
<
Related to #8273
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If
escape=False
is specified, this dataframe fill fail horribly……as the
<td><a href="http://reallylongurlthateasilyislongertha...</td>
will be broken HTML, and thea
tag is closed by the closingtd
tag.i propose that
display.max_rows
is ignored for cells that contain unescaped HTML tags (i.e. at least one<
character)Related to #8273
The text was updated successfully, but these errors were encountered: