feat: implement text diff tool

This commit is contained in:
2024-05-14 22:26:00 +02:00
parent 5113fe626b
commit 91fe326261
10 changed files with 259 additions and 36 deletions

View File

@@ -55,7 +55,7 @@ export const toolGroups = {
shortTitle: "HTML",
longTitle: "HTML Encoder / Decoder",
description:
"Encode or decode all the applicable characters to their corresponding HTML entities",
"Encode or decode all the applicable characters to their corresponding HTML entities",
keywords: "html encoder escaper decocder unescaper",
href: "/encoders-decoders/html",
},
@@ -64,7 +64,7 @@ export const toolGroups = {
shortTitle: "URL",
longTitle: "URL Encoder / Decoder",
description:
"Encode or decode all the applicable characters to their corresponding URL entities",
"Encode or decode all the applicable characters to their corresponding URL entities",
keywords: "url encoder escaper decocder unescaper",
href: "/encoders-decoders/url",
},
@@ -137,6 +137,14 @@ export const toolGroups = {
keywords: "case converter convert text inspector inspect",
href: "/text/inspector",
},
diff: {
Icon: icons.Diff,
shortTitle: "Text diff",
longTitle: "Text Inspector & Case Converter",
description: "Analyze text and convert it to a different case",
keywords: "case converter convert text inspector inspect",
href: "/text/diff",
},
},
},
} as const satisfies ToolGroups;