Skip to content

Allow parsing tag with namespace? #112

@ioquatix

Description

@ioquatix

It looks like this can't parse a tag with a namespace, e.g. <foo:bar ...>

md4c/src/md4c.c

Lines 999 to 1004 in 25096c7

/* Tag name */
if(off >= line_end || !ISALPHA(off))
return FALSE;
off++;
while(off < line_end && (ISALNUM(off) || CH(off) == _T('-')))
off++;

Can we allow it to parse tags with namespaces? i.e. allow : in the tag name.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions