mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 07:46:15 -04:00
feat(new-tool): html entities escape/unescape
This commit is contained in:
parent
ebf6695d25
commit
8e29a97404
3 changed files with 93 additions and 1 deletions
11
src/tools/html-entities/index.ts
Normal file
11
src/tools/html-entities/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Code } from '@vicons/tabler';
|
||||
import type { ITool } from './../Tool';
|
||||
|
||||
export const tool: ITool = {
|
||||
name: 'Escape html entities',
|
||||
path: '/html-entities',
|
||||
description: 'Escape or unescape html entities (replace <,>, &, " and \' to their html version)',
|
||||
keywords: ['html', 'entities', 'escape', 'unescape', 'special', 'characters', 'tags'],
|
||||
component: () => import('./html-entities.vue'),
|
||||
icon: Code,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue