From 37b034fe98d391ee951de2f5aacd0a65ed4ad43f Mon Sep 17 00:00:00 2001 From: david parsons Date: Tue, 6 Feb 2024 14:57:11 -0800 Subject: [PATCH] allow multiple classes for >% blocks --- markdown.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/markdown.c b/markdown.c index 0b71cda..64d262f 100644 --- a/markdown.c +++ b/markdown.c @@ -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)