Closed maxb closed 3 years ago
In https://github.com/yuin/goldmark/blob/master/parser/html_block.go:
var htmlBlockType7Regexp = regexp.MustCompile(`^[ ]{0,3}<(/)?([a-zA-Z0-9\-]+)(` + attributePattern + `*)(:?>|/>)\s*\n?$`)
Near the end, (:?>|/>) looks like a typo for (?:>|/>) (which could be more simply expressed as /?>)
(:?>|/>)
(?:>|/>)
/?>
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Not stale, still needs fixing
In https://github.com/yuin/goldmark/blob/master/parser/html_block.go:
Near the end,
(:?>|/>)
looks like a typo for(?:>|/>)
(which could be more simply expressed as/?>
)