cmark

My personal build of CMark ✏️

Commit
f1d577ab3d801a060befae5b88c489f9b0cda3ed
Parent
04d69ec29fbbefbfbafbfc1050a48cf97a513f19
Author
John MacFarlane <jgm@berkeley.edu>
Date

Removed cmark_node_handler - it was used by cmark_walk, now deleted.

Diffstat

1 file changed, 0 insertions, 9 deletions

Status File Name N° Changes Insertions Deletions
Modified src/cmark.h 9 0 9
diff --git a/src/cmark.h b/src/cmark.h
@@ -32,8 +32,6 @@ char *cmark_markdown_to_html(const char *text, int len);
 /** ## Node Structure
  */
 
-/**
- */
 typedef enum {
 	/* Error status */
 	CMARK_NODE_NONE,
@@ -68,16 +66,12 @@ typedef enum {
 } cmark_node_type;
 
 
-/**
- */
 typedef enum {
 	CMARK_NO_LIST,
 	CMARK_BULLET_LIST,
 	CMARK_ORDERED_LIST
 }  cmark_list_type;
 
-/**
- */
 typedef enum {
 	CMARK_PERIOD_DELIM,
 	CMARK_PAREN_DELIM
@@ -93,9 +87,6 @@ typedef enum {
 	CMARK_EVENT_EXIT
 } cmark_event_type;
 
-typedef int (*cmark_node_handler)(cmark_node *node, cmark_event_type ev_type,
-				  void *state);
-
 /**
  * ## Creating and Destroying Nodes
  */