Skip to content

Commit

Permalink
build: Markdown plugin should not use package reference for importing…
Browse files Browse the repository at this point in the history
…; rather use local references
  • Loading branch information
umaranis committed May 29, 2024
1 parent 81c5ff0 commit 26e52ca
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import {onMount} from 'svelte';
import {ImageNode, getEditor} from 'svelte-lexical';
import {ImageNode} from '../Image/ImageNode.js';
import {
registerMarkdownShortcuts,
type ElementTransformer,
Expand All @@ -23,6 +23,7 @@
$createHorizontalRuleNode as createHorizontalRuleNode,
} from '../HorizontalRuleNode.js';
import type {LexicalNode} from 'lexical';
import {getEditor} from '$lib/core/composerContext.js';
const editor = getEditor();
Expand Down

0 comments on commit 26e52ca

Please sign in to comment.