Special characters in analyzer frames

When I have certain characters, e. g. > (greater than), in the string to be visualized in an analyzer frame it will be printed as “>”

result_types = {
        'Data': {
            'format': '{{data.Info}}'
        }
    }

return AnalyzerFrame('Data', frame.start_time, frame.end_time, {'Info': 'Test -> Test'})

Is there a way to print those special characters?

Hi @Phunkafizer ,

Is the problem that the > an other characters are being transformed into something else? We use the handlebars template formatting engine, which by default will do this. I’ll make a note to look into changing the default behavior, but for now you should be able to use 3 braces instead of 2 to disable the escaping.

For instance:

result_types = {
        'Data': {
            'format': '{{{data.Info}}}'
        }
    }

Hope that helps!

Ryan

Works like a charm now, thank you very much!