aboutsummaryrefslogtreecommitdiff
path: root/Converter/includes/compiler.h
diff options
context:
space:
mode:
Diffstat (limited to 'Converter/includes/compiler.h')
-rw-r--r--Converter/includes/compiler.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Converter/includes/compiler.h b/Converter/includes/compiler.h
index 6e1eca8..1e8578f 100644
--- a/Converter/includes/compiler.h
+++ b/Converter/includes/compiler.h
@@ -6,6 +6,8 @@
typedef char *string;
const static char TOKENS[] = {'*', '_', '~'};
+const static char *TOKENS_COMPILED[] = { "<i>", "<u>", "<s>" };
+const static char *TOKENS_CLOSE_COMPILED[] = { "</i>", "</u>", "</s>" };
const static size_t N_TOKENS = 3;
/* Compile markdown line to HTML line */
@@ -14,5 +16,7 @@ string compile_line(string line, size_t sz_line, string line_or_source);
int find_string(string src, string query, size_t sz_src, size_t sz_query);
/* Check if a given character is a text token*/
bool is_token(char c);
+/* Generate the compiled token pair for a given single sized markdown token */
+char **get_token_pair(char c);
#endif // __COMPILER_H_