-
-
Notifications
You must be signed in to change notification settings - Fork 1
Tools Text Diff
Diego Alfonso edited this page Jan 24, 2026
·
1 revision
Location: Sidebar → Diff Utility
Compare two texts and visualize differences.
- Enter Text 1 (original)
- Enter Text 2 (modified)
- View highlighted diff
- Side-by-side comparison
- Additions highlighted in green
- Deletions highlighted in red
- Based on diff-match-patch algorithm
rpc Diff(DiffRequest) returns (DiffResponse);
message DiffRequest {
string text1 = 1;
string text2 = 2;
}
message DiffResponse {
string diff_html = 1;
}Location: Sidebar → Text Tools
Manipulate and analyze text.
| Action | Description |
|---|---|
| Sort A-Z | Sort lines alphabetically |
| Sort Z-A | Reverse alphabetical sort |
| Reverse | Reverse line order |
| Dedupe | Remove duplicate lines |
| Remove Empty | Delete blank lines |
| Trim | Remove leading/trailing whitespace |
Shows real-time stats:
- Character count
- Word count
- Line count
rpc TextInspect(TextInspectRequest) returns (TextInspectResponse);
rpc TextManipulate(TextManipulateRequest) returns (TextManipulateResponse);Location: Sidebar → Similarity
Calculate text similarity using Levenshtein distance.
- Enter Text 1
- Enter Text 2
- View distance score
- Distance 0: Identical texts
- Lower is better: Fewer edits needed
| Text 1 | Text 2 | Distance |
|---|---|---|
| kitten | sitting | 3 |
| hello | hello | 0 |
| abc | xyz | 3 |
rpc TextSimilarity(SimilarityRequest) returns (SimilarityResponse);
message SimilarityRequest {
string text1 = 1;
string text2 = 2;
}
message SimilarityResponse {
int32 distance = 1;
double similarity = 2; // Percentage
}Getting Started
User Guide
Development
Operations
Community