Markdown does not render inline code correctly

The back-ticks shows up in the rendered output. You can see it yourself in the official Vaadin examples, Markdown component | Vaadin components (first example). I guess this is a bug, but where to file it? There are so many vaadin repos

The back-ticks are added through the components CSS, and looking at the Git history it looks like this was added intentionally as a stylistic choice.

You can hide these with the following CSS:

  vaadin-markdown code::before,                                                                                                                                                                                                                                                                                           
  vaadin-markdown code::after {                                                                                                                                                                                                                                                                                           
    content: none !important;                                                                                                                                                                                                                                                                                             
  }     

Also feel free to open an issue here if you think this is a bad default: Issues · vaadin/web-components · GitHub

Thanks for the fast reply. If it is done intentionally, its not a bug but a feature :slight_smile:

It is very unusual, in any case. I would rather say, if you want this style, add the CSS.

Thanks Artur, awesome to see how community and Vaadin work together. Really impressive!