We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
data-numeric
Maybe consider adding a data-numeric attribute to table cells if is.numeric(x):
is.numeric(x)
<td data-numeric></td>
so we could then target those columns in CSS with specific formatting:
td[data-numeric] { text-align: right; }
This would be particularly useful in situations where people want the bare HTML table with no CSS, as requested in #816.
The text was updated successfully, but these errors were encountered:
rich-iannone
No branches or pull requests
Prework
Proposal
Maybe consider adding a
data-numeric
attribute to table cells ifis.numeric(x)
:so we could then target those columns in CSS with specific formatting:
This would be particularly useful in situations where people want the bare HTML table with no CSS, as requested in #816.
The text was updated successfully, but these errors were encountered: