Move note-block.js into subdirectory

This commit is contained in:
Jonatan Heyman 2022-12-30 15:00:49 +01:00
parent 1695cc9d11
commit 8e88f33e4a
2 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,9 @@ import { layer, RectangleMarker } from "@codemirror/view"
import { EditorState, RangeSetBuilder, StateField, Facet , StateEffect} from "@codemirror/state";
import { RangeSet } from "@codemirror/rangeset";
import { syntaxTree } from "@codemirror/language"
import { Note, Document, NoteDelimiter } from "./lang-heynote/parser.terms.js"
import { Note, Document, NoteDelimiter } from "../lang-heynote/parser.terms.js"
import { IterMode } from "@lezer/common";
import { INITIAL_DATA } from "./annotation.js";
import { INITIAL_DATA } from "../annotation.js";
// tracks the size of the first delimiter

View File

@ -6,7 +6,7 @@ import { indentWithTab, insertTab, indentLess, indentMore } from "@codemirror/co
import { nord } from "./theme/nord.mjs"
import { customSetup } from "./setup.js"
import { heynoteLang } from "./lang-heynote/heynote.js"
import { noteBlockExtension } from "./note-block.js"
import { noteBlockExtension } from "./block/note-block.js"
export class HeynoteEditor {