blackstork-io / fabric

An open-source command-line tool for reporting workflow automation and a configuration language for reusable templates. Reporting-as-Code
https://blackstork.io/fabric/
Apache License 2.0
10 stars 0 forks source link

Refactor `content.text` options into separate content providers #133

Closed traut closed 1 month ago

traut commented 1 month ago

Design

Refactor format_as options from content.text into separate content providers:

instead of

content text {
   text = "some title"
   format_as = "title"
}

we would have

content title {
  value = "some title"
}

Notes