ESPHome Display: Change text size mid-string

Hi All,

Is it possible to change the text size whilst in the same string? - currently I am trying to display the time:

it.strftime(0, 60, id(arial30), TextAlign::BASELINE_LEFT, "%l:%M", id(current_time).now());

But I would like to add “%P”, but in smaller text - I have tried:

it.strftime(0, 60, id(arial30),id(arial14), TextAlign::BASELINE_LEFT, "%l:%M","%P", id(current_time).now());

But no joy - any ideas?

Thanks
Leacho