Skip to content
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# textn8r

[![Go Report Card](https://goreportcard.com/badge/github.com/p2p-b2b/textn8r)](https://goreportcard.com/report/github.com/p2p-b2b/textn8r)
[![GoDoc](https://godoc.org/github.com/p2p-b2b/textn8r?status.svg)](https://godoc.org/github.com/p2p-b2b/textn8r)
[![Go Report Card](https://goreportcard.com/badge/github.com/slashdevops/textn8r)](https://goreportcard.com/report/github.com/slashdevops/textn8r)
[![GoDoc](https://godoc.org/github.com/slashdevops/textn8r?status.svg)](https://godoc.org/github.com/slashdevops/textn8r)

A flexible and extensible Go library for text normalization. `textn8r` provides a comprehensive set of string normalizers that can be used individually or chained together to clean, transform, and standardize text data.

Expand All @@ -19,7 +19,7 @@ A flexible and extensible Go library for text normalization. `textn8r` provides
## Installation

```bash
go get github.com/p2p-b2b/textn8r
go get github.com/slashdevops/textn8r
```

## Quick Start
Expand All @@ -29,7 +29,7 @@ package main

import (
"fmt"
"github.com/p2p-b2b/textn8r"
"github.com/slashdevops/textn8r"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/p2p-b2b/textn8r"
"github.com/slashdevops/textn8r"
)

// Example demonstrates basic usage of individual normalizers
Expand Down
4 changes: 2 additions & 2 deletions examples/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module examples

go 1.24.5

require github.com/p2p-b2b/textn8r v0.0.0
require github.com/slashdevops/textn8r v0.0.0

replace github.com/p2p-b2b/textn8r => ../
replace github.com/slashdevops/textn8r => ../
5 changes: 3 additions & 2 deletions examples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import (
"fmt"
"strings"

"github.com/p2p-b2b/textn8r"
"github.com/slashdevops/textn8r"
)

func main() {
fmt.Println("=== textn8r Examples ===\n")
fmt.Println("=== textn8r Examples ===")
fmt.Println()

// Basic normalizers
fmt.Println("1. Basic Case Normalizers:")
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/p2p-b2b/textn8r
module github.com/slashdevops/textn8r

go 1.24.5
Loading