-
-
Notifications
You must be signed in to change notification settings - Fork 720
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Markdown support in flag description #6399
Comments
The biggest challenge seems to be to add it to the "search tables" because of the highlighter code. The highlighter only support "string" and not Adding highlighter when it needs to span multiple Nodes does not seem super-intuitive. |
I think we can do the highlight inside of the markdown component as a customer renderer. |
After thinking a bit more on this I am not sure if it really makes sense to allow markdown in the descriptions when it is in table view. This will lead to a messy table that can be hard to read. The built-in description pop-over can still be rendered as markdown. Instead the in-cell descriptions should be rendered as readable text. Example input: *some* text here [link](http://somewhere.com) Example output:
|
Describe the feature request
Adding support for simple syntax like bold, italic and links would help. Unsure about "heading" etc due to limited space for descriptions.
Background
Adding links to descriptions is not rendering nice.
Solution suggestions
Reuse the
<Markdown>
component in the rendering.The text was updated successfully, but these errors were encountered: