Merge branch 'main' into feat/css-xpath-converter

This commit is contained in:
sharevb 2024-10-27 22:49:29 +01:00 committed by GitHub
commit bee22b877a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
42 changed files with 1439 additions and 87 deletions

View file

@ -10,6 +10,9 @@ import { tool as textToUnicode } from './text-to-unicode';
import { tool as safelinkDecoder } from './safelink-decoder';
import { tool as xmlToJson } from './xml-to-json';
import { tool as jsonToXml } from './json-to-xml';
import { tool as regexTester } from './regex-tester';
import { tool as regexMemo } from './regex-memo';
import { tool as markdownToHtml } from './markdown-to-html';
import { tool as pdfSignatureChecker } from './pdf-signature-checker';
import { tool as numeronymGenerator } from './numeronym-generator';
import { tool as macAddressGenerator } from './mac-address-generator';
@ -113,6 +116,7 @@ export const toolsByCategory: ToolCategory[] = [
tomlToYaml,
xmlToJson,
jsonToXml,
markdownToHtml,
],
},
{
@ -158,6 +162,8 @@ export const toolsByCategory: ToolCategory[] = [
cssXpathConverter,
cssSelectorsMemo,
xpathMemo,
regexTester,
regexMemo,
],
},
{