Migrating Scaling text
The old syntax for scaling text was:
{{{scalingText width height horizontalAlignment verticalAlignment text [font]}}}
To convert this to the new syntax, you can use the following:
<print-one-scaling-text id='example-id'>{{text}}</print-one-scaling-text>
The new syntax uses CSS to define everything. So to set the height and width, you would do the following:
For alignment, we now use CSS values for `justify-content` (horizontal) and `align-items` (vertical). The values have also been adjusted and can now only be `start`, `center`, or `end`. That would look like this:
You can then set the font using `font-family`.