diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index a017e15..4ff86ed 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -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.' } diff --git a/ts_web/elements/dees-editormarkdown.ts b/ts_web/elements/dees-editormarkdown.ts index cc3ad8d..cf7416e 100644 --- a/ts_web/elements/dees-editormarkdown.ts +++ b/ts_web/elements/dees-editormarkdown.ts @@ -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...')