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

[Bug]: Tags getting cut off on dashes #410

Closed
1 task done
sitiom opened this issue Jan 29, 2024 · 2 comments
Closed
1 task done

[Bug]: Tags getting cut off on dashes #410

sitiom opened this issue Jan 29, 2024 · 2 comments
Assignees
Labels
bug Something isn't working help wanted Extra attention is needed

Comments

@sitiom
Copy link

sitiom commented Jan 29, 2024

Is there an existing issue for this?

  • I have searched the existing issues

What happened?

> Tags: rust, winget, winget-cli, winget-pkgs

Output:

Tags:
- cli
- pkgs
- rust
- winget
@sitiom sitiom added bug Something isn't working help wanted Extra attention is needed labels Jan 29, 2024
@russellbanks
Copy link
Owner

Hi @sitiom, this makes sense as the input is split by non-alphanumeric characters. In this, the - character is seen as a delimiter which is why you have a cli tag. This is the same with #412 where the + is seen as a delimiter.

I'll change this to split the input by a set of defined delimiters instead. I'm thinking just , and .

@russellbanks
Copy link
Owner

Fixed in def1eb5:

> Tags: rust, winget, winget-cli, winget-pkgs
Tags:
- rust
- winget
- winget-cli
- winget-pkgs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants