I'm working on a character sheet (duh). I would like to include formatted blocks, with the contents and formatting based on user input. Arbitrarily marked-up text should go into a field, and then that text should be interpreted and displayed in another place (or the same place). My use case is dozens of paragraph-long skills, most of which are unique to the character. I could just use textareas, but custom styling would make the text much easier to read. I tried just putting HTML directly into a textarea with an attribute, and also binding that attribute to a span, but the tags get stripped out. And that makes sense, I guess--automatic sanitization is better than the alternative. I tried Markdown, as well, with no effect. Is there any way to do what I'm trying to do, or something similar?