summaryrefslogtreecommitdiff
path: root/src/html.cpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-11-15 19:14:11 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-11-15 19:14:11 +0300
commit233c346c4af51371cb4744be5e1c9798d2fcac02 (patch)
treea4ad0cbd8f2e429dddacbfab96cf186b706ea827 /src/html.cpp
parentb51891569cb4a92b656baf8c2fcd1dc95f610739 (diff)
downloadtexo-233c346c4af51371cb4744be5e1c9798d2fcac02.tar
texo-233c346c4af51371cb4744be5e1c9798d2fcac02.tar.xz
texo-233c346c4af51371cb4744be5e1c9798d2fcac02.zip
.
Diffstat (limited to 'src/html.cpp')
-rw-r--r--src/html.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/html.cpp b/src/html.cpp
index fb2fb5e..d492c19 100644
--- a/src/html.cpp
+++ b/src/html.cpp
@@ -131,8 +131,8 @@ bool TexoProducerHTML::CloseUnderline()
return exporter.Put("</ins>");
}
-bool TexoProducerHTML::StartLink(
- const ScriptVariable & link, const ScriptVariable & title)
+bool TexoProducerHTML::StartLink(const ScriptVariable & link,
+ const ScriptVariable & title)
{
bool ok = true;
if (link != "") {
@@ -147,8 +147,8 @@ bool TexoProducerHTML::StartLink(
return ok;
}
-bool TexoProducerHTML::CloseLink(
- const ScriptVariable & link, const ScriptVariable & title)
+bool TexoProducerHTML::CloseLink(const ScriptVariable & link,
+ const ScriptVariable & title)
{
if (link != "") {
return exporter.Put("</a>");
@@ -159,7 +159,8 @@ bool TexoProducerHTML::CloseLink(
bool TexoProducerHTML::TruePutImage(const ScriptVariable & src,
- const ScriptVariable & alt, const ScriptVariable & title)
+ const ScriptVariable & alt,
+ const ScriptVariable & title)
{
bool ok = true;
if (src != "") {