fix(core): update
This commit is contained in:
parent
83f79c5fcb
commit
56dee69019
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@designestate/dees-editor',
|
name: '@designestate/dees-editor',
|
||||||
version: '1.0.70',
|
version: '1.0.71',
|
||||||
description: 'an advanced editor for markdown documents based on monaco.'
|
description: 'an advanced editor for markdown documents based on monaco.'
|
||||||
}
|
}
|
||||||
|
@ -89,6 +89,8 @@ const hello = 'yes'
|
|||||||
public async firstUpdated(_changedPropertiesArg) {
|
public async firstUpdated(_changedPropertiesArg) {
|
||||||
await super.firstUpdated(_changedPropertiesArg);
|
await super.firstUpdated(_changedPropertiesArg);
|
||||||
const editor = this.shadowRoot.querySelector('dees-editor');
|
const editor = this.shadowRoot.querySelector('dees-editor');
|
||||||
|
|
||||||
|
// lets care about wiring the markdown stuff.
|
||||||
const markdownOutlet = this.shadowRoot.querySelector('dees-editormarkdownoutlet');
|
const markdownOutlet = this.shadowRoot.querySelector('dees-editormarkdownoutlet');
|
||||||
const smartmarkdownInstance = new smartmarkdown.SmartMarkdown();
|
const smartmarkdownInstance = new smartmarkdown.SmartMarkdown();
|
||||||
const mdParsedResult = await smartmarkdownInstance.getMdParsedResultFromMarkdown('loading...')
|
const mdParsedResult = await smartmarkdownInstance.getMdParsedResultFromMarkdown('loading...')
|
||||||
|
Loading…
Reference in New Issue
Block a user