diff --git a/lua/nvim-ts-autotag/internal.lua b/lua/nvim-ts-autotag/internal.lua index 38e6526..420ea70 100644 --- a/lua/nvim-ts-autotag/internal.lua +++ b/lua/nvim-ts-autotag/internal.lua @@ -10,6 +10,7 @@ M.tbl_filetypes = { 'html', 'javascript', 'typescript', 'javascriptreact', 'typescriptreact', 'svelte', 'vue', 'tsx', 'jsx', 'xml', 'php', + 'markdown', 'glimmer','handlebars','hbs' } @@ -21,7 +22,7 @@ M.tbl_skipTag = { local ERROR_TAG = "ERROR" local HTML_TAG = { - filetypes = {'html', 'php', 'xml'}, + filetypes = {'html', 'php', 'xml', 'markdown'}, start_tag_pattern = 'start_tag', start_name_tag_pattern = 'tag_name', end_tag_pattern = "end_tag",