Multi-Line Strings as attributes #591
archiewood
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We have a use case where we're using markdoc tags to compose queries.
{% table data="demo_daily_orders" date="date" series="case when total_sales > 18000 then 'High' when total_sales > 9000 then 'Medium' else 'Low' end" /%}We'd quite like to be able to do something like
{% table data="demo_daily_orders" date="date" series=""" case when total_sales > 18000 then 'High' when total_sales > 9000 then 'Medium' else 'Low' end """ /%}I can imagine this might be out of scope to the core project, but we could certainly look at contributing this if there is interest
Beta Was this translation helpful? Give feedback.
All reactions