mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2026-01-31 05:02:13 +00:00
feat: implement text diff tool
This commit is contained in:
8
config/persistence-keys.ts
Normal file
8
config/persistence-keys.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
export const PERSISTENCE_KEY = {
|
||||
panels: {
|
||||
textDiff: {
|
||||
vertical: "panels/text-diff/vertical",
|
||||
horizontal: "panels/text-diff/horizontal",
|
||||
},
|
||||
},
|
||||
} as const;
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user