Using the Python library Panel, I'm trying to format an IntSliderRange to f"{the_slider_number} kr"
but the formatting argument in that class is not doing anything with the python text formatting tricks I am familiar with: 'kr', '{} kr', '{0} kr', etc.
Running help(pn.widgets.IntRangeSlider)
tells me that I have to provide "A format string or bokeh TickFormatter" but I can't seem to find any relevant search results based on that.
Copilot suggests '0[.]0a' as an argument which does stuff to the format, namely express the numbers in thousands (1234 -> "1.2k"), but that's not at all what I want.
Does anyone recognize this formatting system? Where can I find out how to use it?