feat: edit entries

This commit is contained in:
LunarAkai 2025-06-30 23:50:48 +02:00
commit 3d87fd8fcb
30 changed files with 519 additions and 6 deletions

View file

@ -0,0 +1,15 @@
@tool
extends EditorPlugin
func _enter_tree() -> void:
# Initialization of the plugin goes here.
add_custom_type("MarkdownTextEdit", "TextEdit", preload("markdown_text_edit.gd"), null)
func _exit_tree() -> void:
# Clean-up of the plugin goes here.
remove_custom_type("MarkdownTextEdit")