Hi everyone
I have a website page with a <code></code> block inside. Inside this code block is some code that has < and > symbols:
#include <Wire.h>
I can't write it like this because then Odoo complains that there is a XMLSyntaxError: Opening and ending tag mismatch when I try to update my module.
I also tried writing it like:
#include <Wire.h>
But then odoo renders the <Wire.h> as HTML code and creates a <Wire.h></Wire.h> block inside my <code></code> block...
Does anyone know any solution for this?