FancyTextRendering icon indicating copy to clipboard operation
FancyTextRendering copied to clipboard

Render markdown & clickable links with TextMeshPro in Unity.

Results 16 FancyTextRendering issues
Sort by recently updated
recently updated
newest added

Line breaks are not inserted after a header. The webdemo and preview image show a different behaviour, no idea what's going on here. ![fancytextrendering_bug](https://user-images.githubusercontent.com/58740482/157432444-6cd47e10-b840-4562-adbb-5c067712081f.jpg)

bug

Currently only one level of list is supported. You should be able to nest lists, like so: ## Input: ``` 1. List level one! 1. Another item on list level...

enhancement

Some web markdown renderers use a more faded color for strikethrough text, to make it more explicit that the text is to be ignored. See reddit: ![image](https://user-images.githubusercontent.com/32693298/106215723-90163180-619f-11eb-86e9-6bc3bc90092f.png) FTR should support...

HTTP and HTTPS links can be automatically detected. The same should apply to email addresses, with a `mailto` link generated.

enhancement

You should be able to create markdown tables, like this one! ## Input: ``` | Heading one! | Heading two! | Heading three! | | ------------------------------------------------------------ | ------------------------------------------------------------ | ---------------------------------------...

enhancement

You should be able to create full width line breaks with `---` or `===`, like so: --- TMP doesn't really support this, and the line break will probably have to...

enhancement

Currently, each node of a list can only have one line. A line break will be interpreted as the end of the list. In accordance with markdown spec, a single...

enhancement

In most markdown renderers, if you want to use the shrug emoticon `¯\_(ツ)_/¯`, you have to type it like `¯\\\_(ツ)_/¯` to fix the escape stuff. This is presently the case...

enhancement

We do a little of this before and after lists, but it should be done everywhere.

enhancement

Due to the way escaping currently works, if you have a single isolated `\` it will be invisible. You have to type two for a backslash to show up. This...

bug