allow multiple classes for >% blocks

This commit is contained in:
david parsons
2024-02-06 14:57:11 -08:00
parent 033f07110d
commit 37b034fe98
+2 -1
View File
@@ -772,7 +772,8 @@ szmarkerclass(char *p)
* check if the first line of a quoted block is the special div-not-quote
* marker %[kind:]name%
*/
#define iscsschar(c) (isalpha(c) || (c == '-') || (c == '_') )
#define iscsschar(c) (isalpha(c) || (c == '-') || (c == '_') || (c == ' ') )
static int
isdivmarker(Line *p, int start, mkd_flag_t *flags)