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

Extensions prevents from parsing some urls and emails #103

Open
filiprak opened this issue Jan 19, 2021 · 0 comments
Open

Extensions prevents from parsing some urls and emails #103

filiprak opened this issue Jan 19, 2021 · 0 comments

Comments

@filiprak
Copy link

Example invalid case:

anchorme({
    input: `
      github.com
      @mention
      github.com
      #hashtag
      [email protected]
    `,
    extensions: [
      // Hashtags
      {
        test: /#(\w|_)+/gi,
        transform: string =>
        `<a href="https://a.b?s=${string.substr(1)}">${string}</a>`
      },
      // an extension for mentions
      {
        test: /@(\w|_)+/gi,
        transform: string =>
        `<a href="https://a.b?p=${string.substr(1)}">${string}</a>`
      }
    ]
  })
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

No branches or pull requests

1 participant