From 5c4bd7bef81987c4d3e7e3a5a977aaee86a759ea Mon Sep 17 00:00:00 2001 From: abap34 Date: Tue, 2 Jan 2024 00:48:13 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AA=E7=A9=BA=E7=99=BD?= =?UTF-8?q?=E3=81=8C=E6=8C=BF=E5=85=A5=E3=81=95=E3=82=8C=E3=81=A6=E3=81=84?= =?UTF-8?q?=E3=81=9F=E3=83=90=E3=82=B0=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ast.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast.hpp b/src/ast.hpp index 372ab43..f71438c 100644 --- a/src/ast.hpp +++ b/src/ast.hpp @@ -686,7 +686,7 @@ namespace almo { // 
タグを使うことで キャプションなどをつける。 std::string to_html() const override { - std::string output = ""; + std::string output = ""; std::string figcaption = "
" + caption + "
"; return "
" + output + figcaption + "
"; }