Skip to content

Commit 233fe1d

Browse files
authored
feat: export ranged table tag correctly in core.export.markdown (#1697)
1 parent 3b20622 commit 233fe1d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lua/neorg/modules/core/export/markdown/module.lua

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,14 @@ module.public = {
418418
tag_close = "-->",
419419
},
420420
}
421+
elseif text == "table" then
422+
return {
423+
output = "",
424+
state = {
425+
tag_indent = tag_start_column - 1,
426+
tag_close = "",
427+
},
428+
}
421429
elseif text == "math" and module.config.public.extensions["mathematics"] then
422430
return {
423431
output = module.config.public.mathematics.block["start"],

0 commit comments

Comments
 (0)