fix(core): update

This commit is contained in:
Philipp Kunz 2022-05-20 16:28:09 +02:00
parent 83f79c5fcb
commit 56dee69019
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@designestate/dees-editor',
version: '1.0.70',
version: '1.0.71',
description: 'an advanced editor for markdown documents based on monaco.'
}

View File

@ -89,6 +89,8 @@ const hello = 'yes'
public async firstUpdated(_changedPropertiesArg) {
await super.firstUpdated(_changedPropertiesArg);
const editor = this.shadowRoot.querySelector('dees-editor');
// lets care about wiring the markdown stuff.
const markdownOutlet = this.shadowRoot.querySelector('dees-editormarkdownoutlet');
const smartmarkdownInstance = new smartmarkdown.SmartMarkdown();
const mdParsedResult = await smartmarkdownInstance.getMdParsedResultFromMarkdown('loading...')