@equinor/fusion-wc-markdown
v1.5.0
Published
Markdown editor created from ProseMirror markdown
Keywords
Readme
fusion-wc-markdown 
Installation
npm install @equinor/fusion-wc-markdownMarkdown Editor
Example
<fusion-wc-markdown-editor props>
**some** markdown *text*
</fusion-wc-markdown-editor>Usage
const markdown = "# my heading here";
<fwc-markdown-editor value={markdown} onInput={(e)=>{console.log(e.target._value)}} change={console.log} />Properties/Attributes
| Name | Type | Default | Description
| ---- | ---- | ------- | -----------
| menuItems | Array<MdMenuItemType>* | ['strong', 'em', 'bullet_list', 'ordered_list'] | List of visible menu buttons
| minHeight | string | '' | Markdown Editor minimum height
| value | string | '' | Markdown editors value
| menuSize | MenuSizes** | 'medium' | Size of the menu buttons
* Array<MdMenuItemType> is list of showing visible menu buttons available as MdMenuItemType.
type MdMenuItemType =
| 'strong'
| 'em'
| 'link'
| 'ordered_list'
| 'bullet_list'
| 'paragraph'
| 'blockquote'
| 'h1'
| 'h2'
| 'h3';* MenuSizes type imported from markdown component.
type MenuSizes = 'small' | 'medium' | 'large';