Skip to main content
Skip table of contents

March 2025 release

LUY 8.1.0

March 2025

We’re excited to introduce our new markdown editor in LUY Nova, a game changer for text formatting in LUY! Whether you're creating descriptions or editing long-form content, the new markdown-based text formatting makes it easier than ever to structure your content — just like you're used to in other applications.

LUY_markdowneditor.png

Even if you're still working in LUY Classic, you’ll also benefit from this upgrade. We replaced the XWiki syntax with Markdown syntax, which is much more common. In LUY Classic you'll have to enter the syntax manually, markdown ensures a smoother integration with external tools and keeps your formatting future-proof. You can always try our new editor in LUY Nova.

What about your existing content? We've taken care of the migration so you don't have to worry about it. Just remember that from now on, all future edits - including your API scripts - should use Markdown to ensure proper rendering.

Now, let’s dive into what’s new in this release:


1. New features

1.1 Migration of LUY’s text formatting syntax from XWiki to Markdown

  • All multiline text fields, including descriptions and multiline attributes, in LUY are now stored in Markdown instead of XWiki syntax.

  • This change ensures better interoperability with external tools, simpler formatting, and improved content rendering in the new frontend.

  • We have implemented markdown in such a way so that it is compatible with our legacy frontend: The backend automatically converts Markdown to HTML for seamless rendering in the old UI. In order to use formatted text in LUY Classic, you will now need to use markdown formatting syntax.

Error handling & logging: Any failed XWiki-to-Markdown conversions are logged while preserving the original text.

Backup & rollback: While we aim for a roll-forward approach, all previous XWiki data is backed up for safety.

The most frequently used formatting options work very similar in XWiki and in Markdown syntax. Some advanced XWiki syntax may not convert perfectly—review after migration. Markdown focuses on simplicity and readability, so some custom stylings are not supported. (see our Markdown vs. XWiki comparison in the expand below.)

With LUY now expecting Markdown formatting, please ensure that your Plugin and REST API integrations are using markdown formatting instead of XWiki.

XWiki formatting will be technically accepted, but won’t look good in either LUY Nova nor LUY Classic since XWiki formatting is not supported anymore.

XWiki and Markdown format comparison

The following table contains a general comparison of XWiki 2.0 and Markdown syntax. Rows highlighted in yellow indicate lack of the support for the given XWiki feature. Markdown focuses on simplicity and readability, so some custom stylings are not supported.

Feature

XWiki 2.0 syntax

Markdown syntax

Bold text

**text**

**text**

Italic text

//text//

*text*

Striked out text

--text--

~~text~~

Monospace text

##text##

`text`

Underline text

__text__

Not supported, will be migrated as italic text.

Subscript text

,,subscript,,

Not supported, will be migrated as ,,text,,.

Superscript text

^^superscript^^

Not supported, will be migrated as ^^text^^.

Custom styling

(% style="color:blue" %) text

Not supported, will be migrated as regular text.

Headings (levels 1-6)

= text =
== text ==
=== text ===
==== text ====
===== text =====
====== text ======

# text
## text
### text
#### text
##### text
###### text

Horizontal line

----

---

Bullet list

TEXT
* item 1
** item 2
*** item 3
* item 4
TEXT
* item 1
  * item 2
    * item 3
* item 4

Numbered list

TEXT
1. item 1
11. item 2
111. item 3
1. item 4
TEXT
1. item 1
  1. item 2
    1. item 3
1. item 4

Mixed list

TEXT
1. item 1
1*. item 2
1**. item 3
1. item 4

or

* item 1
*1. item 2
*11. item 3
* item 4

Not supported, nested lists will be migrated with the type of the top-level list.

TEXT
1. item 1
  1. item 2
      1. item 3
1. item 4

or

* item 1
  * item 2
    * item 3
* item 4

Styled lists (with custom bullet icon)

TEXT
(% style="list-style-type: square" %)
* item 1
** item 2
* item 3

Not supported, will be migrated as bullet list:

TEXT
* item 1
    * item 2
* item 3

Definition lists

CODE
; term
: definition

Not supported, will be migrated as term: definition text.

Line breaks

First line\\Second line

In Markdown line break is marked by 2 subsequent whitespace characters “ “ followed by a new line.

CODE
First line  
Second line

Direct link

[[https://luy.eu]]

<https://luy.eu>

Labeled link

[[LUY>>https://luy.eu]]

[LUY](https://luy.eu)

Link opening in new tab

[[LUY>>https://luy.eu||target="_blank"]]

Not required anymore. All links will open in a new tab by default.

E-mail link

mailto:john@smith.net

<mailto:john@smith.net>

Labeled e-mail link

[[john@smith.net>>mailto:john@smith.net]]

[john@smith.net](mailto:john@smith.net)

Table

CODE
|=Title 1|=Title 2
|Word 1|Word 2

or

!=Title 1!=Title 2
!!Word 1!!Word 2

Multiple table headers are ignored in Markdown and only the 1st row can have a header appearance (in XWiki any row can be marked as header by using |=). If the table didn’t have a header in XWiki, then the first row will become table’s header in Markdown.

CODE
| Title 1 | Title 2 |
| ------- | ------- |
| Word 1  | Word 2  |

Styled tables

CODE
(% style="background-color:red" %)
|=Title 1|=Title 2
|Word 1|Word 2

Not supported. Styled tables will be migrated as regular tables.

Image

image:https://luy.eu/img.png

![https://luy.eu/img.png](https://luy.eu/img.png)

Image with caption

[[Captioned image>>image:https://luy.eu/img.png]]

Captions are not directly supported in Markdown. We migrate captions as regular text appearing right after the image.

![https://luy.eu/img.png](https://luy.eu/img.png) Captioned image

Styled images

[[image:https://luy.eu/img.png||width="25" height="25"]]

Not supported, will be migrated as default image without any parameters.

![https://luy.eu/img.png](https://luy.eu/img.png)

Quotations

CODE
> This is a single quote.

> This is other quote with nesting.
>> This is the nested quote.
CODE
> This is a single quote.

> This is other quote with nesting.
>> This is the nested quote.

Groups

CODE
|=Header 1|=Header 2|=Header 3
|Cell One|(((
= Embedded document =

Some embedded paragraph.

* list item one
* list item two
  ** sub-item 1
  ** sub-item 2
))) | Cell Three

Not supported. In Markdown only inline-styling is allowed inside table, lists or other container elements. Elements specified in the group tag ((( ))) will be converted to Markdown, but all line breaks will be removed. In the frontend this will typically result in seeing unformatted Markdown syntax.

1.2 LUY Nova: new multiline attribute editor in SEV and TV

In both, the single element view and in the table view, you can now edit descriptions and multiline text attributes in LUY Nova. To do so, you don’t need to remember formatting details like in LUY Classic but use the toolbar of our markdown editor. This provides a simple, lightweight, and widely compatible way to format text while ensuring smooth interoperability with external tools.

Our markdown toolbar offers you the most commonly used formatting options such as: bold, cursive, strike through, lists, quotes and links, you can also enter tables, images, and use different text styles.

Our editor comes with a built-in undo-redo functionality to enhance your editing efficiency.

LUY_markdowneditor.png

For a more in-depth explanation of the new markdown syntax and editing options, see our multiline text editor section in the table view or single element view help center pages.

Accessibility and keybord navigation:

  • Tab: Tab moves the cursor to the next interactive element, except in lists where it creates a new indentation.

  • Shift+Tab: Moves the focus to the previous toolbar button.

  • Enhanced copy-paste support: When copying from external tools (e.g., JIRA, Confluence), formatting is preserved where possible.

Legacy frontend support remains unchanged, as Markdown is automatically converted to HTML for display.

Markdown editor does not support HTML execution for security reasons—all HTML tags are escaped.

For best results, users should avoid adding line breaks within tables, as this may impact formatting.

2. Improvements

Performance optimization:

  • Database queries related to formerly XWiki, now Markdown rendering have been optimized for faster load times.

  • Improved caching of attributes.

LUY Nova:

  • In the table view in the edit columns side bar: attribute groups and attributes are now sorted in the order in which they have been configured.

  • After opening edit columns side bar in the table view you can directly start typing to use the quick search.

  • Single element view: the timestamp at “last change” now contains the time additionally to author and date.

  • The button to switch to LUY Nova and LUY Classic is renamed for more clarity.

  • The headers in the table view and in the all reports list are now streamlined for more consistency.

  • When adding a new rule in the advanced filter, LUY automatically scrolls to the new rule.

  • The create new report button is disabled during save process in order to avoid confusion.

  • Some mouse-over texts are adjusted for more clarity.

  • Some menu entries are renamed for more consistency.

  • Some spacings and alignments are adjusted for better readability.

3. Bug fixes

LUY Nova:

  • Fixed an issue so that an error toast is shown to the user in case an element name could not be saved.

  • Fixed breadcrumb behavior after a browser redirect.

  • Fixed a redundant hint in the numeric attribute editor.

4. Limitations

  • LUY Nova mainly introduces read only features and some basic edit possibilities. These features will be expanded on in the upcoming releases.

  • There are certain areas that are not yet accessible in LUY Nova, such as some diagrams, the dashboard, some administration and integration settings. For now, you’ll need to use LUY Classic to use those. Our release notes will, of course, feature any new addition to LUY Nova in the future.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.