From f83bd6a3379004602f5d71bdfcba97489f854b79 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Tue, 21 Apr 2015 15:45:59 -0300 Subject: [PATCH] Created richtext_bbcode (markdown) --- richtext_bbcode.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 richtext_bbcode.md diff --git a/richtext_bbcode.md b/richtext_bbcode.md new file mode 100644 index 0000000..396aa4c --- /dev/null +++ b/richtext_bbcode.md @@ -0,0 +1,20 @@ +# BBCode for RichTextLabel + +### Introduction + +[RichTextLabel](class_richtextlabel) allows to display complex text markup in a control. It has a built-in API for generating the markup, but can also parse a BBCode. + +### Setting Up + +For RichTextLabel to work properly, it must be set-up. This means loading the intended fonts in the releavant properties: + +

+ +### Reference + +Command | Tag | Description +--------|-----|------------- +*bold* | `[b]{text}[/b]` | Makes {text} bold. +*italics* | `[i]{text}[/i]` | Makes {text} italics. +*underline* | `[u]{text}[/u]` | Makes {text} underline. +