blob: 3520961e0f2848ddcca000a580c06e16ba71c16b [file] [log] [blame]
import QtQuick 2.0
Item {
width: 320
height: 480
Text {
anchors.centerIn: parent
font.family: "Arial"
font.pixelSize: 16
textFormat: Qt.RichText
font.strikeout: true
text: "<p>First line</p><p>Second line</p><p>Third line</p>"
}
}