Re: [racket-users] What is the best way to display styled text in a Racket GUI app?

2019-11-12 Thread Martin DeMello
I just figured this out for my current project; I'm not sure it's the best way but it's a working way :) I have a subclass of text% that mixes in html-text-mixin, and then I populate it via render-html-to-text. You can see the code here:

[racket-users] What is the best way to display styled text in a Racket GUI app?

2019-11-12 Thread Andre Garzia
Hi Friends, Does anyone here know what is the best way to show styled text in a Racket GUI application? I've got some markdown that I wish to display but I can't find how to display any form of styled text, let alone markdown. I've started a little project to implement webviews but I think