From 071393f7576ce71e017d7ae3f0c506323a5613c9 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Tue, 11 Jul 2023 20:58:19 -0300 Subject: [PATCH] start extracting args --- shortcodes.rl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shortcodes.rl b/shortcodes.rl index 4cbfb23..204c126 100644 --- a/shortcodes.rl +++ b/shortcodes.rl @@ -101,6 +101,9 @@ struct shortcode { chunk name; chunk data; char matching; + chunk argnames[100]; + chunk argvals[100]; + int argcount; }; typedef struct shortcode shortcode;