Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: lazy instead of greedy regex #29

Merged
merged 1 commit into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/transforms/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const MAGIC = [
'<img src="$2" alt="$1" />'
],
[
/\[(.+)\]\((.+?)\)/g,
/\[(.+?)\]\((.+?)\)/g,
'<a href="$2">$1</a>'
]
];
Expand Down
2 changes: 2 additions & 0 deletions tests/fixtures/markdown/0003-links.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<p>This is a <a href="https://lea.codes/">link</a></p>

<p>This is another link: <a href="https://test.de">https://test.de</a>.</p>

<p>Two links: <a href="a.html">a</a> and <a href="b.html">b</a>.</p>
2 changes: 2 additions & 0 deletions tests/fixtures/markdown/0003-links.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
This is a [link](https://lea.codes/)

This is another link: <https://test.de>.

Two links: [a](a.html) and [b](b.html).