summaryrefslogtreecommitdiff
path: root/src/markdown.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/markdown.cpp
parentb51891569cb4a92b656baf8c2fcd1dc95f610739 (diff)
downloadtexo-233c346c4af51371cb4744be5e1c9798d2fcac02.tar
texo-233c346c4af51371cb4744be5e1c9798d2fcac02.tar.xz
texo-233c346c4af51371cb4744be5e1c9798d2fcac02.zip
.
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 2a88717..fd5aaec 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -104,8 +104,8 @@ bool TexoProducerMarkdown::Strike()
return Mod("~~");
}
-bool TexoProducerMarkdown::Link(
- const ScriptVariable & link, const ScriptVariable & title)
+bool TexoProducerMarkdown::Link(const ScriptVariable & link,
+ const ScriptVariable & title)
{
bool ok = Link();
if (link != "") {
@@ -134,7 +134,8 @@ bool TexoProducerMarkdown::Link()
bool TexoProducerMarkdown::PutImage(const ScriptVariable & src,
- const ScriptVariable & alt, const ScriptVariable & title)
+ const ScriptVariable & alt,
+ const ScriptVariable & title)
{
bool ok = true;
if (src != "") {
@@ -161,9 +162,8 @@ bool TexoProducerMarkdown::PutHorizontalRule()
ok = ok && exporter.Put('\n');
}
nospace = true;
- return ok
- && exporter.Put(
- "--------------------------------------------------\n");
+ return ok && exporter.Put(
+ "--------------------------------------------------\n");
}