13 KiB
MarkdownLabel
A custom Godot node that extends RichTextLabel to use Markdown instead of BBCode.
Contents
Disclaimer
This is a work in progress. I created this for my own use and figured out someone else might as well have some use for it. Obviously using BBCode will be better performance-wise since it's natively integrated in Godot. But using Markdown is much easier to write and read, so it can save development time in many cases.
I coded this quickly and without previous knowledge of how to parse Markdown properly, so there might be some inefficiencies and bugs. Please report any unexpected behavior.
I might convert this to C++ code at some point, to improve performance.
Intended use case
This node is very useful for static text that you want to display in your application. It's not recommended to use this for text which is dynamically modified at run time.
My initial use case that lead me to do this was to directly include text from files in my game, such as credits and patch notes, in a format that is easier to mantain for me. This has the added benefit of being able to use the same Markdown files that are displayed in a github repository, instead of having to make two versions of the same text in two different formats.
Installation
- Download the
addons
folder of this repository. - Place it in your project's root folder.
- Go to
Project > Project Settings... > Plugins
and enable the MarkdownLabel plugin. - Reload the project.
Usage
Simply add a MarkdownLabel to the scene and write its markdown_text
field in Markdown format.
In the RichTextLabel properties:
bbcode_enabled
property must be enabled.- Do not touch the
text
property, since it's internally used by MarkdownLabel to properly format its text. - You can use the rest of its properties as normal.
You can still use BBCode tags that don't have a Markdown equivalent, such as [color=green]underlined text[/color]
, allowing you to have the full functionality of RichTextLabel with the simplicity and readibility of Markdown.
An example of the node being used to display this Markdown file.
Basic syntax
The basic Markdown syntax works in the standard way:
Markdown text ................ -> BBCode equivalent
-------------------------------||------------------
**Bold** or __bold__ ......... -> [b]Bold[/b] or [b]bold[/b]
*Italics* or _italics_ ....... -> [i]Italics[/i] or [i]italics[/i]
***Nested*** *__emphasis__* .. -> [b][i]Nested[/i][b] [i][b]emphasis[/b][/i]
~~Strike-through~~ ........... -> [s]Strike-through[/s]
Code
You can display code in-line by surrounding text with any number of backticks (`), and you can display code in multiple lines (also called a fenced code block) by placing a line containing just three or more backticks (```) or tildes (~~~) above and below your code block.
Examples:
Markdown text ................. -> BBCode equivalent
--------------------------------||------------------
The following is `in-line code` -> The following is [code]in-line code[/code]
This is also ``in-line code`` -> The following is [code]in-line code[/code]
~~~ .......... -> [code]
This is a .......... -> This is a
multiline codeblock .......... -> multiline codeblock
~~~ .......... -> [/code]
Important: note that in-line code and code blocks won't do anything with Godot's default font, since it doesn't have a monospace variant. As described in Godot's BBCode reference: "The monospaced ([code]
) tag only works if a custom font is set up in the RichTextLabel node's theme overrides. Otherwise, monospaced text will use the regular font".
Headers
MarkdownLabel supports headers, although RichTextLabel doesn't. By default, a line defined as a header will have its font size scaled by a pre-defined amount.
To define a line as a header, begin it with any number of consecutive hash symbols (#) and follow it with the title of your header. The number of hash symbols defines the level of the header. The maximum supported level is six..
Example:
Markdown text:
## This is a second-level header
BBCode equivalent:
[font_size=27]This is a second-level header[/font_size]
where the 27
in [font_size=27]
comes from multiplying the set h2.font_size
(1.714
by default) by the current normal_font_size
(16
by default).
You can optionally set custom sizes and formatting (bold, italics, and underline) for each header level individually. To do so:
- In the inspector, open the "Header formats" category, click on the resource associated with the desired header level, and customize the properties there.
- In script, access those properties through the
h1
,h2
, etc. properties. Example:$YourMarkdownLabel.h3.is_italic = true
will set all level-3 headers within$YourMarkdownLabel
to be displayed as italics.
Of course, you can also use basic formatting within the headers (e.g. ### Header with **bold** and *italic* words
).
Links
Links follow the standard Markdown syntax of [text to display](example.com)
. Additionally, you can add tooltips to your links with [text to display](example.com "Some tooltip")
.
"Autolinks" are also supported with their standard syntax: <example.com>
, and <mail@example.com>
for mail autolinks.
Keep in mind that, in Godot, links do nothing by default. MarkdownLabel treats them the say way (may be changed in the future). See the RichTextLabel reference for more info.
Markdown text .............................. -> BBCode equivalent
---------------------------------------------||------------------
[this is a link](example.com) .............. -> [url=example.com]this is a link[/url]
[this is a link](example.com "Example page") -> [hint=Example url][url=example.com]this is a link[/url][/hint]
<example.com> .............................. -> [url]example.com[/url]
<mail@example.com> ......................... -> [url=mailto:mail@example.com]mail@example.com[/url]
Images
Images use the same syntax as links but preceded by an exclamation mark (!):
Markdown text .............................................. -> BBCode equivalent
-------------------------------------------------------------||------------------
 ................... -> [img]res://some/path.png[/img]
 -> [hint=This is a tooltip][img]res://some/path.png[/img][/hint]
However, Godot's BBCode doesn't support alt text for images, so what you put inside the square brackets doesn't affect the end result. You can use it for your own clarity, though.
For advanced usage (setting width, height, and other options), use the BBCode [img]
tag instead, as described in Godot's BBCode reference.
Lists
Unordered list elements begin with a dash (-), asterisk (*), or plus sign (+) followed by a space.
Ordered list elements begin with a number from 1 to 9 followed by a single dot and a space.
To begin a list, you must write the first element without indentation and, in the case of ordered lists, the first element must begin with the number 1.
From there, you add elements in consecutive lines (do not leave blank lines between elements), and you can open nested lists by indenting new elements any number of spaces or tabs.
Examples:
Markdown text:
1. First element of an unordered list
2. Second element
1. Nested element
1. Third element. The number at the beginning doesn't need to match the actual order. It's only relevant for the first element.
- You can also nest unordered lists inside ordered lists, and viceversa
1. This is a nested list inside another nested list.
BBCode equivalent:
[ol]First element of an unordered list
Second element
[ol]Nested element[/ol]
Third element. The number at the beginning doesn't need to match the actual order. It's only relevant for the first element.
[ul]You can also nest unordered lists inside ordered lists, and viceversa
[ol]This is a nested list inside another nested list.[/ol]
[/ul][/ol]
Tables
Tables are constructed by separating columns with pipes (|
).
Example:
Markdown text:
| cell1 | cell2 |
| cell3 | cell4 |
BBCode equivalent:
[table=2]
[cell]cell1[/cell][cell]cell2[/cell]
[cell]cell3[/cell][cell]cell4[/cell]
[/table]
Note that delimiter rows are optional and will be ignored, since Godot's BBCode doesn't support cell alignment.
Example:
| cell1 | cell2 |
| ----: | :---- |
| cell3 | cell4 |
The above Markdown table will produce the same BBCode output as the previous example.
For advanced usage (setting ratio, border, background, etc.), use the BBCode [table]
tag instead, as described in Godot's BBCode reference.
Escaping characters
You can escape characters using a backlash if you don't want them to form a Markdown syntax element. You can escape backlashes if you don't want them to escape the following character. You can't escape characters inside in-line or fenced code, since the string will be displayed as-is. You also don't need to escape characters inside a link or image url.
Examples:
Markdown text ............................ -> BBCode equivalent
-------------------------------------------||------------------
These \**outer asterisks*\* are escaped .. -> These *[i]outer asterisks[/i]* are escaped
This \\*asterisk* is not escaped ......... -> \[i]This asterisk[/i] is not escaped
`This \\*asterisk* is inside in-line code` -> [code]This \\*asterisk* is inside in-line code[/code]
[Link](url_with_backlashes.net) .......... -> [url=url_with_backlashes.net]Link[/url]
Note: to escape an ordered list, you must escape the dot that follows the number, e.g. 1\. Not a list
.
Keep in mind that, if you are writing text inside a script, you will have to "double escape" backlashes, since you are writing in a string. Some other characters, such as double-quotes, also need in-script escaping:
- In-script:
\\*
,\\\"
- In-editor:
\*
,\"
- Result:
*
,"
Limitations
Keep in mind that this is not supposed to be a full Markdown implementation, it just provides a Markdown interface to Godot's BBCode support and, as such, is limited by it.
If encountering any unreported bug or unexpected bahaviour, please ensure that your Markdown is written as clean as possible, following best practices (I wrote this primarily taking Commonmark and Github-flavoured Markdown as reference, but it has its own peculiarities due to the use of Godot's BBCode).
Unsupported syntax elements
The following Markdown syntax elements are not supported because Godot's BBCode does not support them:
- Quotes
- Horizontal rules
- Reference links
Performance
This node basically parses the whole text, converting it from Markdown to BBCode at runtime, so it may produce performance issues with some extreme usages, such as very large and heavily-formatted texts or updating a heavily-formatted text very frequently. That already can happen with BBCode, though, so in that case, you are probably better off using RichTextLabel's functions instead of writing the formatting directly in-text.
Acknowledgements
The syntax and implementation of MarkdownLabel is largely based on Github-flavored Markdown and CommonMark, with its own quirks to accomodate it within Godot's RichTextLabel BBCode.