Remix.run Logo
amcaskill 5 hours ago

I work on a dashboarding / BI solution that is also built around markdown and clickhouse. www.evidence.dev

We moved to stripe's Markdoc variant for the component syntax last year and have been really happy with it. Models are good at writing it, people are good at reviewing it.

Here's an area chart that would issue a SQL query for weekly revenue totals:

``` {% area_chart data="my_table" x="date" y="sum(revenue)" date_grain="week" /%} ```

tnolet 2 hours ago | parent [-]

This is XML without the < and >

Diti an hour ago | parent [-]

Yeah, why not go directly the route of custom HTML elements in Markdown anyway, since HTML inside Markdown is valid?