import QtQuick 2.12 import QtQuick.Window 2.12 Window { visible: true width: 400 height: 200 title: qsTr("richtextbugs") Text { anchors.fill: parent textFormat: Text.RichText wrapMode: Text.Wrap text: `
1 3 3
4 5 6
7 8 9

above


below

one two three
four five six
seven eight nine
` } }