videooverlay: chevrons don't need to be escaped in code examples

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/700>
This commit is contained in:
Mathieu Duponchelle 2020-06-12 00:17:24 +02:00 committed by GStreamer Merge Bot
parent 3354b3ebbb
commit a90968997a

View file

@ -228,13 +228,13 @@
* ## GstVideoOverlay and Qt * ## GstVideoOverlay and Qt
* *
* |[ * |[
* #include &lt;glib.h&gt; * #include <glib.h>;
* #include &lt;gst/gst.h&gt; * #include <gst/gst.h>;
* #include &lt;gst/video/videooverlay.h&gt; * #include <gst/video/videooverlay.h>;
* *
* #include &lt;QApplication&gt; * #include <QApplication>;
* #include &lt;QTimer&gt; * #include <QTimer>;
* #include &lt;QWidget&gt; * #include <QWidget>;
* *
* int main(int argc, char *argv[]) * int main(int argc, char *argv[])
* { * {