diff --git a/src/modules/welcomeq/release_notes.qml b/src/modules/welcomeq/release_notes.qml index 6da5bc7c9..29ba7c032 100644 --- a/src/modules/welcomeq/release_notes.qml +++ b/src/modules/welcomeq/release_notes.qml @@ -1,6 +1,6 @@ /* === This file is part of Calamares - === * - * SPDX-FileCopyrightText: 2020 Anke Boersma + * SPDX-FileCopyrightText: 2020 - 2024 Anke Boersma * SPDX-License-Identifier: GPL-3.0-or-later * * Calamares is Free Software: see the License-Identifier above. @@ -37,32 +37,36 @@ Rectangle { y: 8 width: 640 font.pointSize: 14 - textFormat: Text.RichText + textFormat: Text.MarkdownText antialiasing: true activeFocusOnPress: false wrapMode: Text.WordWrap - text: qsTr("

%1

-

This an example QML file, showing options in RichText with Flickable content.

+ text: qsTr("### %1 +This an example QML file, showing options in Markdown with Flickable content. -

QML with RichText can use HTML tags, Flickable content is useful for touchscreens.

+QML with RichText can use HTML tags, with Markdown it uses the simple Markdown syntax, Flickable content is useful for touchscreens. -

This is bold text

-

This is italic text

-

This is underlined text

-

This text will be center-aligned.

-

This is strikethrough

+**This is bold text** -

Code example: - ls -l /home

+*This is italic text* -

Lists:

-
    -
  • Intel CPU systems
  • -
  • AMD CPU systems
  • -
+_This is underlined text_ -

The vertical scrollbar is adjustable, current width set to 10.

").arg(Branding.string(Branding.VersionedName)) +> blockquote + +~~This is strikethrough~~ + +Code example: +``` +ls -l /home +``` + +**Lists:** + * Intel CPU systems + * AMD CPU systems + +The vertical scrollbar is adjustable, current width set to 10.").arg(Branding.string(Branding.VersionedName)) } } @@ -87,5 +91,4 @@ Rectangle { fillMode: Image.PreserveAspectFit } } - }