summaryrefslogtreecommitdiff
path: root/src/node.c
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2014-11-19 16:53:53 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2014-11-19 17:00:58 +0100
commit285879585db2f284a1ce0896c4775be8a260d6db (patch)
treee23c09bf541867e19bf0cc66fcb25cac744487d7 /src/node.c
parent3776d23d40b8f638a2a97d7e54f2660c7c435090 (diff)
Accessors for list data
Only 'list_type', 'start', and 'tight' should be relevant for rendering. Accessors for other list data could be added for completeness but they don't seem very useful.
Diffstat (limited to 'src/node.c')
-rw-r--r--src/node.c63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/node.c b/src/node.c
index 56f3937..c1f29d3 100644
--- a/src/node.c
+++ b/src/node.c
@@ -163,6 +163,69 @@ cmark_node_set_header_level(cmark_node *node, int level) {
return 0;
}
+cmark_list_type
+cmark_node_get_list_type(cmark_node *node) {
+ if (node->type == CMARK_NODE_LIST) {
+ return node->as.list.list_type;
+ }
+ else {
+ return CMARK_NO_LIST;
+ }
+}
+
+int
+cmark_node_set_list_type(cmark_node *node, cmark_list_type type) {
+ if (node->type == CMARK_NODE_LIST) {
+ node->as.list.list_type = type;
+ return 1;
+ }
+ else {
+ return 0;
+ }
+}
+
+int
+cmark_node_get_list_start(cmark_node *node) {
+ if (node->type == CMARK_NODE_LIST) {
+ return node->as.list.start;
+ }
+ else {
+ return 0;
+ }
+}
+
+int
+cmark_node_set_list_start(cmark_node *node, int start) {
+ if (node->type == CMARK_NODE_LIST) {
+ node->as.list.start = start;
+ return 1;
+ }
+ else {
+ return 0;
+ }
+}
+
+int
+cmark_node_get_list_tight(cmark_node *node) {
+ if (node->type == CMARK_NODE_LIST) {
+ return node->as.list.tight;
+ }
+ else {
+ return 0;
+ }
+}
+
+int
+cmark_node_set_list_tight(cmark_node *node, int tight) {
+ if (node->type == CMARK_NODE_LIST) {
+ node->as.list.tight = tight;
+ return 1;
+ }
+ else {
+ return 0;
+ }
+}
+
const char*
cmark_node_get_url(cmark_node *node) {
switch (node->type) {