From f4e6b8d1cced3958afd2d10ffce9dfb35872a621 Mon Sep 17 00:00:00 2001 From: Kenshi Muto Date: Thu, 31 Dec 2020 11:04:30 +0900 Subject: [PATCH] Update review.lua Co-authored-by: atusy <30277794+atusy@users.noreply.github.com> --- review.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/review.lua b/review.lua index 949cbf4..0b9321a 100755 --- a/review.lua +++ b/review.lua @@ -558,10 +558,8 @@ function RawBlock(format, text) if (format == "tex") then return "//embed[latex]{\n" .. text .. "\n//}" - elseif (format == "html") then - return "//embed[html]{\n" .. text .. "\n//}" else - return "//embed{\n" .. text .. "\n//}" + return "//embed[" .. format .. "]{\n" .. text .. "\n//}" end end