feat: edit entries
This commit is contained in:
parent
8e215a6962
commit
3d87fd8fcb
30 changed files with 519 additions and 6 deletions
15
addons/markdown_text_edit/plugin.gd
Normal file
15
addons/markdown_text_edit/plugin.gd
Normal 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")
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue