How do I maintain the characteristics of a text when using a file?

Hey, I’m just working on a project where I have to read from a text file.

Initially I had thought about saving the file as .txt, but it does not save the bold characteristics of the text. Then I searched for information and tried using the Markdown source (.md) that saves it. However, when I read the file in App Inventor, it shows up like **text**, not bold.

Is there any way to keep the bold of the text in App Inventor?

Thanks

In which component are you reading the file? Label, Textbox, Other ?

I am calling the file with the file component, and later I am setting the text of a label to what I got from the file. Is it easy understanding? Or do you need visual support of the blocks?

I understand.

You could use html tags in your text, e.g, The <b>dog</b> chased the <b>ball</b> and set the label to html format

It worked! Thank you very much

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.