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
Similar to #978.
https://latest-with-plugins.datasette.io/fixtures?sql=select%0D%0A++dateutil_rrule(%27FREQ%3DHOURLY%3BCOUNT%3D5%27)%2C%0D%0A++dateutil_rrule_date(%0D%0A++++%27FREQ%3DDAILY%3BCOUNT%3D3%27%2C%0D%0A++++%271st+jan+2020%27%0D%0A++)%3B
The text was updated successfully, but these errors were encountered:
This time it's because there are newlines in the column header:
<style> @media only screen and (max-width: 576px) { .rows-and-columns td:nth-of-type(1):before { content: "dateutil_rrule(\000027FREQ=HOURLY;COUNT=5\000027)"; } .rows-and-columns td:nth-of-type(2):before { content: "dateutil_rrule_date( \00000A \000027FREQ=DAILY;COUNT=3\000027, \00000A \0000271st jan 2020\000027 \00000A )"; } } </style>
Those need to be escaped somehow.
Sorry, something went wrong.
Handle \r\n correctly in CSS escapes, refs #980
5b8b8ae
That fixed it: https://latest-with-plugins.datasette.io/fixtures?sql=select%0D%0A++dateutil_rrule(%27FREQ%3DHOURLY%3BCOUNT%3D5%27)%2C%0D%0A++dateutil_rrule_date(%0D%0A++++%27FREQ%3DDAILY%3BCOUNT%3D3%27%2C%0D%0A++++%271st+jan+2020%27%0D%0A++)%3B
<style> @media only screen and (max-width: 576px) { .rows-and-columns td:nth-of-type(1):before { content: "dateutil_rrule(\000027FREQ=HOURLY;COUNT=5\000027)"; } .rows-and-columns td:nth-of-type(2):before { content: "dateutil_rrule_date(\00000A \000027FREQ=DAILY;COUNT=3\000027,\00000A \0000271st jan 2020\000027\00000A )"; } } </style>
Release 0.50a0
b68cc1c
Refs #891, #970, #978, #980, #981
Release 0.50
a61f0e4
Refs #1001, #514, #891, #943, #969, #970, #978, #980, #996, #997 Closes #1002
No branches or pull requests
Similar to #978.
https://latest-with-plugins.datasette.io/fixtures?sql=select%0D%0A++dateutil_rrule(%27FREQ%3DHOURLY%3BCOUNT%3D5%27)%2C%0D%0A++dateutil_rrule_date(%0D%0A++++%27FREQ%3DDAILY%3BCOUNT%3D3%27%2C%0D%0A++++%271st+jan+2020%27%0D%0A++)%3B
The text was updated successfully, but these errors were encountered: