feat(new tool): Math Formula format converter

Fix part of #1009
This commit is contained in:
sharevb 2024-05-18 15:24:02 +02:00 committed by ShareVB
parent e876d03608
commit bc0c344f18
7 changed files with 150 additions and 8 deletions

View file

@ -1,6 +1,7 @@
import { tool as base64FileConverter } from './base64-file-converter';
import { tool as base64StringConverter } from './base64-string-converter';
import { tool as basicAuthGenerator } from './basic-auth-generator';
import { tool as mathFormatsConverter } from './math-formats-converter';
import { tool as asciiTextDrawer } from './ascii-text-drawer';
@ -156,7 +157,12 @@ export const toolsByCategory: ToolCategory[] = [
},
{
name: 'Math',
components: [mathEvaluator, etaCalculator, percentageCalculator],
components: [
mathEvaluator,
etaCalculator,
percentageCalculator,
mathFormatsConverter,
],
},
{
name: 'Measurement',