From 701f08fbc9768049cd77160f313cd336dadb984f Mon Sep 17 00:00:00 2001 From: dx Date: Wed, 20 May 2020 14:31:08 +0100 Subject: +strikethrough tag to accepted tokens --- Converter/includes/compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Converter') diff --git a/Converter/includes/compiler.h b/Converter/includes/compiler.h index 8f81ff8..6e1eca8 100644 --- a/Converter/includes/compiler.h +++ b/Converter/includes/compiler.h @@ -5,8 +5,8 @@ #include typedef char *string; -const static char TOKENS[] = {'*', '_'}; -const static size_t N_TOKENS = 2; +const static char TOKENS[] = {'*', '_', '~'}; +const static size_t N_TOKENS = 3; /* Compile markdown line to HTML line */ string compile_line(string line, size_t sz_line, string line_or_source); -- cgit v1.2.3-13-gbd6f