summaryrefslogtreecommitdiff
path: root/src/html.hpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2019-10-29 19:50:18 +0300
committerAleksey Veresov <aleksey@veresov.pro>2019-10-29 19:50:18 +0300
commit3b13f7ac20875df55e02d5e407c4c3cbab3f159c (patch)
treee4c1010278ada9b64b9f785b37aa7a9b3859110e /src/html.hpp
parent1de3a9aae84ec71c4fd83604ea9c45204efb9baf (diff)
downloadtexo-3b13f7ac20875df55e02d5e407c4c3cbab3f159c.tar
texo-3b13f7ac20875df55e02d5e407c4c3cbab3f159c.tar.xz
texo-3b13f7ac20875df55e02d5e407c4c3cbab3f159c.zip
.
Diffstat (limited to 'src/html.hpp')
-rw-r--r--src/html.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/html.hpp b/src/html.hpp
index fcf64e6..c9d2e97 100644
--- a/src/html.hpp
+++ b/src/html.hpp
@@ -37,27 +37,6 @@ public:
void Put(char c);
void Put(const ScriptVariable &str);
void Put(FILE *file);
-
-private:
- enum State {
- text, // TODO: decoding ("&gt;" -> ">")
- open,
- tag_name,
- tag_skip,
- attr_pre,
- attr_name,
- attr_name_post,
- attr_value_pre,
- attr_value
- } state;
- bool closing;
- ScriptVariable tag;
- ScriptVariable attr;
- ScriptVariable attr_src;
- ScriptVariable attr_href;
- ScriptVariable attr_title;
- ScriptVariable attr_alt;
- ScriptVariable link_text;
};