Directory

prism-markdown-element - Vaadin Add-on Directory

A LitElement that renders markdown with syntax highlight support prism-markdown-element - Vaadin Add-on Directory
# \ [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/prism-markdown-element) **prism-markdown-element** is `LitElement` component inspired from [markdown-element](https://github.com/intcreator/markdown-element) but with extra sugar properties It allows render markdown to html with the help of `prismjs` and `commonmark` libraries **Install** ```shell npm i prism-markdown-element ``` **import it** ```js import 'prism-markdown-element/prism-markdown-element.js'; ``` ## Features * Support highlight code syntax * Support the default themes from `prismjs` * Support custom theme from any url or path (should be a style link and a prismjs theme) ## Properties * **mdsrc** markdown source url * **markdown** markdown text (string) * **theme** any `prismjs` theme ('coy', 'dark', 'funky', 'okaidia','solarizedlight', 'tomorrow', 'twilight') * **customtheme** custom theme url (should be a prismjs css ) ## Usage **No theme (prism as default) and remote markdown** ```html ``` **customtheme example** ``` html ``` **markdown string and prismtheme** ```html ```