import QtQuick 2.0 Rectangle { width: 200 height: 200 color: "white" Text { objectName: "text" textFormat: Text.RichText anchors.fill: parent color: "black" text: "

foo

" verticalAlignment: Text.AlignTop horizontalAlignment: Text.AlignLeft } }