forked from bevacqua/woofmark
-
Notifications
You must be signed in to change notification settings - Fork 5
Switch away from footnote-style linking #65
Copy link
Copy link
Open
Labels
Description
As noted in this test in the PublicLab.Editor project:
Woofmark uses a "footnote" style of linking, where the URLs are placed in a numbered list at the bottom, like:
Hello [world][1]
1. https://world.com
This can cause issues when switching back and forth from HTML to Markdown, so we'd prefer the more basic style:
Hello [world](https://world.com)
We can now write a Jest test for it!
This may also be the case for image markdown URLs.
Reactions are currently unavailable