feat(new-tool): html entities escape/unescape

This commit is contained in:
Corentin Thomasset 2022-04-22 20:13:37 +02:00
parent ebf6695d25
commit 8e29a97404
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 93 additions and 1 deletions

View file

@ -1,6 +1,7 @@
import { LockOpen } from '@vicons/tabler';
import type { ToolCategory } from './Tool';
import { tool as htmlEntities } from './html-entities';
import { tool as urlParser } from './url-parser';
import { tool as deviceInformation } from './device-information';
import { tool as bcrypt } from './bcrypt';
@ -37,7 +38,7 @@ export const toolsByCategory: ToolCategory[] = [
{
name: 'Web',
icon: LockOpen,
components: [urlEncoder, qrCodeGenerator, urlParser, deviceInformation],
components: [urlEncoder, htmlEntities, qrCodeGenerator, urlParser, deviceInformation],
},
{
name: 'Development',