summaryrefslogtreecommitdiff
path: root/src/html.hpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-11-13 19:16:21 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-11-13 19:16:21 +0300
commita45cb537ab82f13f29f1bc33dd8bf998b3fb9c9b (patch)
tree1b9473f7f27221a5de56bb51edacd5be9a61a6b9 /src/html.hpp
parented7a63015c1583d5544ac18bbaccaedc95f3e5e3 (diff)
downloadtexo-a45cb537ab82f13f29f1bc33dd8bf998b3fb9c9b.tar
texo-a45cb537ab82f13f29f1bc33dd8bf998b3fb9c9b.tar.xz
texo-a45cb537ab82f13f29f1bc33dd8bf998b3fb9c9b.zip
Cosmetical changes.
Diffstat (limited to 'src/html.hpp')
-rw-r--r--src/html.hpp15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/html.hpp b/src/html.hpp
index aa22cf1..c32b119 100644
--- a/src/html.hpp
+++ b/src/html.hpp
@@ -2,13 +2,13 @@
#define TEXO_INCLUDED_HTML
#include "exporter.hpp"
-#include "producer.hpp"
#include "importer.hpp"
+#include "producer.hpp"
class TexoProducerHTML: public TexoProducerStrict {
public:
- TexoProducerHTML(TexoExporter &exporter);
+ TexoProducerHTML(TexoExporter & exporter);
protected:
bool TruePut(char c);
@@ -35,14 +35,11 @@ protected:
bool CloseStrike();
bool CloseUnderline();
- bool StartLink(const ScriptVariable &link, const ScriptVariable &title);
- bool CloseLink(const ScriptVariable &link, const ScriptVariable &title);
+ bool StartLink(const ScriptVariable & link, const ScriptVariable & title);
+ bool CloseLink(const ScriptVariable & link, const ScriptVariable & title);
- bool TruePutImage(
- const ScriptVariable &src,
- const ScriptVariable &alt,
- const ScriptVariable &title
- );
+ bool TruePutImage(const ScriptVariable & src, const ScriptVariable & alt,
+ const ScriptVariable & title);
bool TruePutHorizontalRule();
};