Replies: 1 comment 1 reply
|
Not sure if it helps or if you are already aware, there was a discussion on the Zulip about making a markdown widget late last month. From what I can tell it is on hold, the last mesasge is from Hecrj saying
|
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'm trying to build a markdown rendering widget with initial goals being rendering code and hyperlinks as seperate, and handling clicks to hyperlinks. I'm using my own markdown parser for parsing (https://github.com/yusdacra/linemd). The issue I'm having with is determining the layout. Basically, my parser produces some tokens which also include line break tokens. I believe each token will need to be it's own node so that in
drawI can render them stylized. So how could I go about determining the layout for these tokens?All reactions