You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this is a bug with Maaku or with the underlying cmark-gfm library.
I see that Maaku is simply calling into the underlying c function cmark_node_get_start_column(cmark_node *node), which in turn is simply referencing a value:
intcmark_node_get_start_column(cmark_node*node) {
if (node==NULL) {
return0;
}
returnnode->start_column;
}
I am quite sure that the node I am accessing is not NULL, as cmark_node_get_string_content does return a value.
The text was updated successfully, but these errors were encountered:
I'm not sure if this is a bug with Maaku or with the underlying cmark-gfm library.
I see that Maaku is simply calling into the underlying c function
cmark_node_get_start_column(cmark_node *node)
, which in turn is simply referencing a value:I am quite sure that the node I am accessing is not NULL, as
cmark_node_get_string_content
does return a value.The text was updated successfully, but these errors were encountered: