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 sending HTML with comment #336

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

p2world
Copy link

@p2world p2world commented Jul 25, 2024

For example: Copy a link on Windows the HTML in clipboard will be:

<html> 
<body> 
<!--StartFragment--><a href="https://web.telegram.org/k/">Telegram Web</a><!--EndFragment--> 
</body> 
</html>

The * in regex is greedy, it will match to last comment ending, out put became this:

<html> 
<body> 

</body> 
</html>

*? is the lazy mode will only match to the first endding, result will like this:

<html> 
<body> 
<a href="https://web.telegram.org/k/">Telegram Web</a>
</body> 
</html>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants