uccser / verto

Verto is an extension of the Python Markdown package, which allows authors to include complex HTML elements with simple text tags in their Markdown files.
Other
2 stars 1 forks source link

[Bug]: Add tests for links encapsulated in <> #638

Closed jimbonothing64 closed 4 months ago

jimbonothing64 commented 5 months ago

Description of the bug

Links in markdown including ) should be enclosed in <> for compatibility. https://github.com/uccser/cs-field-guide/issues/2565

Adding <> around links should have worked in this pull: https://github.com/uccser/cs-field-guide/pull/2566

To verify verto is or is not at fault here, we should add a test with a link inside <>.

Steps To Reproduce

  1. Run tests

What device/software are you seeing this problem on?

No response

Additional Information

No response

Code of Conduct

jimbonothing64 commented 5 months ago

The markdown library we use implements the John Gruber's Spec, and not the CommonMark Spec.

It looks like John's spec doesn't include enclosing inline links with <>. But the CommonMark spec does.

jimbonothing64 commented 4 months ago

See https://github.com/uccser/verto/issues/657 instead.