From c83f29d9060e7fe1fe4984644138008e664d3a4d Mon Sep 17 00:00:00 2001 From: Ulrike Fischer Date: Sun, 23 Feb 2025 19:13:53 +0100 Subject: [PATCH] remove star from class name --- luamml-amsmath.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/luamml-amsmath.lua b/luamml-amsmath.lua index 7ed59b0..d64f7df 100644 --- a/luamml-amsmath.lua +++ b/luamml-amsmath.lua @@ -70,7 +70,7 @@ do local mml_table = get_table() if not mml_table then return end mml_table.displaystyle = true - mml_table.class=kind + mml_table.class=kind:gsub("*","") if kind=="split" then add_intent_continued_row (mml_table) end @@ -121,7 +121,7 @@ lua.get_functions_table()[funcid] = function() local mml_table = get_table() if not mml_table then return end mml_table.displaystyle = true - mml_table.class=kind + mml_table.class=kind:gsub("*","") local columns = node.count(node.id'align_record', tex.lists.align_head)//2 mml_table.columnalign = kind == 'align' and 'left '..string.rep('right left', columns, ' ') or nil mml_table.width = kind == 'multline' and '100%' or nil