Fix package and import of CodeBlockEditHandler

This commit is contained in:
Stefan Niedermann 2020-12-27 13:02:53 +01:00
parent 51818a014a
commit 56944dfd34
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ import io.noties.markwon.editor.MarkwonEditor;
import io.noties.markwon.editor.MarkwonEditorTextWatcher; import io.noties.markwon.editor.MarkwonEditorTextWatcher;
import io.noties.markwon.editor.handler.EmphasisEditHandler; import io.noties.markwon.editor.handler.EmphasisEditHandler;
import io.noties.markwon.editor.handler.StrongEmphasisEditHandler; import io.noties.markwon.editor.handler.StrongEmphasisEditHandler;
import io.noties.markwon.editor.handler.CodeBlockEditHandler;
import io.noties.markwon.ext.strikethrough.StrikethroughPlugin; import io.noties.markwon.ext.strikethrough.StrikethroughPlugin;
import io.noties.markwon.inlineparser.BangInlineProcessor; import io.noties.markwon.inlineparser.BangInlineProcessor;
import io.noties.markwon.inlineparser.EntityInlineProcessor; import io.noties.markwon.inlineparser.EntityInlineProcessor;

View File

@ -1,4 +1,4 @@
package it.niedermann.android.markdown.markwon.handler; package io.noties.markwon.editor.handler;
import android.text.Editable; import android.text.Editable;
import android.text.Spanned; import android.text.Spanned;