Added support for pandoc's fenced code blocks
[smdp.git] / include / parser.h
index 67d15d4..7a18377 100644 (file)
@@ -5,7 +5,7 @@
  * Functions necessary to parse a file and transform its content into
  * a deck of slides containing lines. All based on markdown formating
  * rules.
- * Copyright (C) 2014 Michael Goehler
+ * Copyright (C) 2015 Michael Goehler
  *
  * This file is part of mdp.
  *
@@ -57,5 +57,6 @@ int next_nonblank(cstring_t *text, int i);
 int prev_blank(cstring_t *text, int i);
 int next_blank(cstring_t *text, int i);
 int next_word(cstring_t *text, int i);
+int next_nontilde(cstring_t *text, int i);
 
 #endif // !defined( PARSER_H )