@jjlmoya/utils-creative 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +62 -62
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/bead-pattern-generator/i18n/en.ts +58 -16
- package/src/tool/bead-pattern-generator/i18n/es.ts +58 -16
- package/src/tool/bead-pattern-generator/i18n/fr.ts +58 -16
- package/src/tool/dice-roller/i18n/en.ts +74 -32
- package/src/tool/dice-roller/i18n/es.ts +74 -32
- package/src/tool/dice-roller/i18n/fr.ts +74 -32
- package/src/tool/excuse-generator/i18n/en.ts +60 -18
- package/src/tool/excuse-generator/i18n/es.ts +60 -18
- package/src/tool/excuse-generator/i18n/fr.ts +60 -18
- package/src/tool/fortune-cookie/i18n/en.ts +60 -18
- package/src/tool/fortune-cookie/i18n/es.ts +60 -18
- package/src/tool/fortune-cookie/i18n/fr.ts +60 -18
- package/src/tool/synesthesia-painter/i18n/en.ts +74 -32
- package/src/tool/synesthesia-painter/i18n/es.ts +74 -32
- package/src/tool/synesthesia-painter/i18n/fr.ts +74 -32
- package/src/tool/zalgo-generator/i18n/en.ts +58 -16
- package/src/tool/zalgo-generator/i18n/es.ts +58 -16
- package/src/tool/zalgo-generator/i18n/fr.ts +58 -16
- package/src/tools.ts +14 -1
|
@@ -1,9 +1,61 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
1
2
|
import type { ZalgoGeneratorLocaleContent } from '../index';
|
|
2
3
|
|
|
4
|
+
const slug = 'zalgo-generator';
|
|
5
|
+
const title = 'Zalgo Generator';
|
|
6
|
+
const description = 'Corrupt your messages with cascading overflowing Unicode characters. Adjust intensity and direction of the glitch effect.';
|
|
7
|
+
|
|
8
|
+
const faq: ZalgoGeneratorLocaleContent['faq'] = [
|
|
9
|
+
{ question: 'What is Zalgo text?', answer: 'It is a type of text that uses Unicode combining characters (diacritics) excessively. When stacked vertically, these characters "overflow" their original line, creating a visual effect of corruption, disorder, or horror popular in internet culture.' },
|
|
10
|
+
{ question: 'Why does Zalgo text look so strange?', answer: 'It exploits a feature of the Unicode standard that allows adding marks above, below, or through a base letter. Since there is no strict limit on how many marks can be added, the text can "invade" lines above or below.' },
|
|
11
|
+
{ question: 'Can I use this text on social media?', answer: 'Yes, most modern platforms (Instagram, Twitter, Discord) support Unicode. However, some networks or devices may filter or truncate excess characters at very high intensity to maintain interface readability.' },
|
|
12
|
+
{ question: 'How can I remove the Zalgo effect from text?', answer: 'To clean corrupted text, you can use JavaScript string normalization or simply paste it into a basic text editor that only accepts plain text. Our tool is purely creative and does not damage the original content.' },
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
const howTo: ZalgoGeneratorLocaleContent['howTo'] = [
|
|
16
|
+
{ name: 'Write the base message', text: 'Enter the text you want to "corrupt" in the main text box.' },
|
|
17
|
+
{ name: 'Adjust the chaos intensity', text: 'Move the slider to define how many combining characters to stack. Higher intensity = harder to read.' },
|
|
18
|
+
{ name: 'Select the overflow direction', text: 'Choose whether corruption should grow upward, downward, or in all directions simultaneously.' },
|
|
19
|
+
{ name: 'Copy the result', text: 'Click the copy button. The resulting text includes all the invisible bytes needed to maintain the glitch effect.' },
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
23
|
+
'@context': 'https://schema.org',
|
|
24
|
+
'@type': 'FAQPage',
|
|
25
|
+
mainEntity: faq.map((item) => ({
|
|
26
|
+
'@type': 'Question',
|
|
27
|
+
name: item.question,
|
|
28
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
29
|
+
})),
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const howToSchema: WithContext<HowTo> = {
|
|
33
|
+
'@context': 'https://schema.org',
|
|
34
|
+
'@type': 'HowTo',
|
|
35
|
+
name: title,
|
|
36
|
+
description,
|
|
37
|
+
step: howTo.map((step) => ({
|
|
38
|
+
'@type': 'HowToStep',
|
|
39
|
+
name: step.name,
|
|
40
|
+
text: step.text,
|
|
41
|
+
})),
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
45
|
+
'@context': 'https://schema.org',
|
|
46
|
+
'@type': 'SoftwareApplication',
|
|
47
|
+
name: title,
|
|
48
|
+
description,
|
|
49
|
+
applicationCategory: 'UtilitiesApplication',
|
|
50
|
+
operatingSystem: 'Web',
|
|
51
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
52
|
+
inLanguage: 'en',
|
|
53
|
+
};
|
|
54
|
+
|
|
3
55
|
export const content: ZalgoGeneratorLocaleContent = {
|
|
4
|
-
slug
|
|
5
|
-
title
|
|
6
|
-
description
|
|
56
|
+
slug,
|
|
57
|
+
title,
|
|
58
|
+
description,
|
|
7
59
|
faqTitle: 'Frequently Asked Questions',
|
|
8
60
|
bibliographyTitle: 'Chaos Bibliography',
|
|
9
61
|
ui: {
|
|
@@ -50,22 +102,12 @@ export const content: ZalgoGeneratorLocaleContent = {
|
|
|
50
102
|
{ term: 'Glitch Art', definition: 'An aesthetic that intentionally incorporates or simulates errors, artifacts, and corruptions in digital media as an expressive technique.' },
|
|
51
103
|
]},
|
|
52
104
|
],
|
|
53
|
-
faq
|
|
54
|
-
{ question: 'What is Zalgo text?', answer: 'It is a type of text that uses Unicode combining characters (diacritics) excessively. When stacked vertically, these characters "overflow" their original line, creating a visual effect of corruption, disorder, or horror popular in internet culture.' },
|
|
55
|
-
{ question: 'Why does Zalgo text look so strange?', answer: 'It exploits a feature of the Unicode standard that allows adding marks above, below, or through a base letter. Since there is no strict limit on how many marks can be added, the text can "invade" lines above or below.' },
|
|
56
|
-
{ question: 'Can I use this text on social media?', answer: 'Yes, most modern platforms (Instagram, Twitter, Discord) support Unicode. However, some networks or devices may filter or truncate excess characters at very high intensity to maintain interface readability.' },
|
|
57
|
-
{ question: 'How can I remove the Zalgo effect from text?', answer: 'To clean corrupted text, you can use JavaScript string normalization or simply paste it into a basic text editor that only accepts plain text. Our tool is purely creative and does not damage the original content.' },
|
|
58
|
-
],
|
|
105
|
+
faq,
|
|
59
106
|
bibliography: [
|
|
60
107
|
{ name: 'Unicode Standard - Combining Characters', url: 'https://www.unicode.org/standard/principles.html#Combining_Characters' },
|
|
61
108
|
{ name: 'The Zalgo Text Phenomenon', url: 'https://knowyourmeme.com/memes/zalgo' },
|
|
62
109
|
{ name: 'MDN - String normalization', url: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize' },
|
|
63
110
|
],
|
|
64
|
-
howTo
|
|
65
|
-
|
|
66
|
-
{ name: 'Adjust the chaos intensity', text: 'Move the slider to define how many combining characters to stack. Higher intensity = harder to read.' },
|
|
67
|
-
{ name: 'Select the overflow direction', text: 'Choose whether corruption should grow upward, downward, or in all directions simultaneously.' },
|
|
68
|
-
{ name: 'Copy the result', text: 'Click the copy button. The resulting text includes all the invisible bytes needed to maintain the glitch effect.' },
|
|
69
|
-
],
|
|
70
|
-
schemas: []
|
|
111
|
+
howTo,
|
|
112
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema],
|
|
71
113
|
};
|
|
@@ -1,9 +1,61 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
1
2
|
import type { ZalgoGeneratorLocaleContent } from '../index';
|
|
2
3
|
|
|
4
|
+
const slug = 'generador-zalgo';
|
|
5
|
+
const title = 'Generador Zalgo';
|
|
6
|
+
const description = 'Corrompe tus mensajes con cascadas de caracteres Unicode desbordantes.';
|
|
7
|
+
|
|
8
|
+
const faq: ZalgoGeneratorLocaleContent['faq'] = [
|
|
9
|
+
{ question: '¿Qué es el texto Zalgo?', answer: 'Es un tipo de texto que utiliza caracteres Unicode de combinación (diacríticos) de forma excesiva. Al apilarse verticalmente, estos caracteres "desbordan" su línea original, creando un efecto visual de corrupción, desorden o terror muy popular en la cultura de internet.' },
|
|
10
|
+
{ question: '¿Por qué el texto Zalgo se ve tan extraño?', answer: 'Se aprovecha de una característica del estándar Unicode que permite añadir marcas encima, debajo o en medio de una letra base. Como no hay un límite estricto de cuántas marcas se pueden añadir, el texto puede "invadir" párrafos superiores o inferiores.' },
|
|
11
|
+
{ question: '¿Puedo usar este texto en redes sociales?', answer: 'Sí, la mayoría de plataformas modernas (Instagram, Twitter, Discord) soportan Unicode. Sin embargo, algunas redes o dispositivos pueden filtrar o recortar el exceso de caracteres si la intensidad es muy alta para mantener la legibilidad de la interfaz.' },
|
|
12
|
+
{ question: '¿Cómo puedo quitar el efecto Zalgo de un texto?', answer: 'Para limpiar un texto corrupto, puedes usar la normalización de strings de JavaScript o simplemente copiarlo en un editor básico que solo admita texto plano. Nuestra herramienta es puramente creativa y no daña el contenido original.' },
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
const howTo: ZalgoGeneratorLocaleContent['howTo'] = [
|
|
16
|
+
{ name: 'Escribir el mensaje base', text: 'Introduce el texto que quieres "corromper" en el cuadro principal de la herramienta.' },
|
|
17
|
+
{ name: 'Ajustar la intensidad del caos', text: 'Mueve el selector para definir cuántos caracteres de combinación quieres apilar. A más intensidad, más difícil será de leer.' },
|
|
18
|
+
{ name: 'Seleccionar la dirección del desbordamiento', text: 'Elige si quieres que la corrupción crezca hacia arriba, hacia abajo o en todas las direcciones simultáneamente.' },
|
|
19
|
+
{ name: 'Copiar el texto resultante', text: 'Haz clic en el botón de copiar. El texto resultante incluirá todos los bytes invisibles necesarios para mantener el efecto glitch.' },
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
23
|
+
'@context': 'https://schema.org',
|
|
24
|
+
'@type': 'FAQPage',
|
|
25
|
+
mainEntity: faq.map((item) => ({
|
|
26
|
+
'@type': 'Question',
|
|
27
|
+
name: item.question,
|
|
28
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
29
|
+
})),
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const howToSchema: WithContext<HowTo> = {
|
|
33
|
+
'@context': 'https://schema.org',
|
|
34
|
+
'@type': 'HowTo',
|
|
35
|
+
name: title,
|
|
36
|
+
description,
|
|
37
|
+
step: howTo.map((step) => ({
|
|
38
|
+
'@type': 'HowToStep',
|
|
39
|
+
name: step.name,
|
|
40
|
+
text: step.text,
|
|
41
|
+
})),
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
45
|
+
'@context': 'https://schema.org',
|
|
46
|
+
'@type': 'SoftwareApplication',
|
|
47
|
+
name: title,
|
|
48
|
+
description,
|
|
49
|
+
applicationCategory: 'UtilitiesApplication',
|
|
50
|
+
operatingSystem: 'Web',
|
|
51
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
52
|
+
inLanguage: 'es',
|
|
53
|
+
};
|
|
54
|
+
|
|
3
55
|
export const content: ZalgoGeneratorLocaleContent = {
|
|
4
|
-
slug
|
|
5
|
-
title
|
|
6
|
-
description
|
|
56
|
+
slug,
|
|
57
|
+
title,
|
|
58
|
+
description,
|
|
7
59
|
faqTitle: 'Preguntas Frecuentes',
|
|
8
60
|
bibliographyTitle: 'Bibliografía del Caos',
|
|
9
61
|
ui: {
|
|
@@ -57,22 +109,12 @@ export const content: ZalgoGeneratorLocaleContent = {
|
|
|
57
109
|
{ term: 'Glitch Art', definition: 'Estética que incorpora intencionalmente errores, artefactos y corrupciones en medios digitales como técnica expresiva.' },
|
|
58
110
|
]},
|
|
59
111
|
],
|
|
60
|
-
faq
|
|
61
|
-
{ question: '¿Qué es el texto Zalgo?', answer: 'Es un tipo de texto que utiliza caracteres Unicode de combinación (diacríticos) de forma excesiva. Al apilarse verticalmente, estos caracteres "desbordan" su línea original, creando un efecto visual de corrupción, desorden o terror muy popular en la cultura de internet.' },
|
|
62
|
-
{ question: '¿Por qué el texto Zalgo se ve tan extraño?', answer: 'Se aprovecha de una característica del estándar Unicode que permite añadir marcas encima, debajo o en medio de una letra base. Como no hay un límite estricto de cuántas marcas se pueden añadir, el texto puede "invadir" párrafos superiores o inferiores.' },
|
|
63
|
-
{ question: '¿Puedo usar este texto en redes sociales?', answer: 'Sí, la mayoría de plataformas modernas (Instagram, Twitter, Discord) soportan Unicode. Sin embargo, algunas redes o dispositivos pueden filtrar o recortar el exceso de caracteres si la intensidad es muy alta para mantener la legibilidad de la interfaz.' },
|
|
64
|
-
{ question: '¿Cómo puedo quitar el efecto Zalgo de un texto?', answer: 'Para limpiar un texto corrupto, puedes usar la normalización de strings de JavaScript o simplemente copiarlo en un editor básico que solo admita texto plano. Nuestra herramienta es puramente creativa y no daña el contenido original.' },
|
|
65
|
-
],
|
|
112
|
+
faq,
|
|
66
113
|
bibliography: [
|
|
67
114
|
{ name: 'Unicode Standard - Combining Characters', url: 'https://www.unicode.org/standard/principles.html#Combining_Characters' },
|
|
68
115
|
{ name: 'The Zalgo Text Phenomenon', url: 'https://knowyourmeme.com/memes/zalgo' },
|
|
69
116
|
{ name: 'MDN - String normalization', url: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize' },
|
|
70
117
|
],
|
|
71
|
-
howTo
|
|
72
|
-
|
|
73
|
-
{ name: 'Ajustar la intensidad del caos', text: 'Mueve el selector para definir cuántos caracteres de combinación quieres apilar. A más intensidad, más difícil será de leer.' },
|
|
74
|
-
{ name: 'Seleccionar la dirección del desbordamiento', text: 'Elige si quieres que la corrupción crezca hacia arriba, hacia abajo o en todas las direcciones simultáneamente.' },
|
|
75
|
-
{ name: 'Copiar el texto resultante', text: 'Haz clic en el botón de copiar. El texto resultante incluirá todos los bytes invisibles necesarios para mantener el efecto glitch.' },
|
|
76
|
-
],
|
|
77
|
-
schemas: []
|
|
118
|
+
howTo,
|
|
119
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema],
|
|
78
120
|
};
|
|
@@ -1,9 +1,61 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
1
2
|
import type { ZalgoGeneratorLocaleContent } from '../index';
|
|
2
3
|
|
|
4
|
+
const slug = 'generateur-zalgo';
|
|
5
|
+
const title = 'Générateur Zalgo';
|
|
6
|
+
const description = 'Corrompez vos messages avec une cascade de caractères Unicode débordants. Ajustez l\'intensité et la direction de l\'effet glitch.';
|
|
7
|
+
|
|
8
|
+
const faq: ZalgoGeneratorLocaleContent['faq'] = [
|
|
9
|
+
{ question: 'Qu\'est-ce que le texte Zalgo ?', answer: 'C\'est un type de texte qui utilise excessivement les caractères de combinaison Unicode (diacritiques). Lorsqu\'ils sont empilés verticalement, ces caractères "débordent" de leur ligne d\'origine, créant un effet visuel de corruption, de désordre ou d\'horreur populaire dans la culture internet.' },
|
|
10
|
+
{ question: 'Pourquoi le texte Zalgo a-t-il l\'air si étrange ?', answer: 'Il exploite une fonctionnalité de la norme Unicode qui permet d\'ajouter des marques au-dessus, en dessous ou à travers une lettre de base. Comme il n\'y a pas de limite stricte au nombre de marques pouvant être ajoutées, le texte peut "envahir" les lignes supérieures ou inférieures.' },
|
|
11
|
+
{ question: 'Puis-je utiliser ce texte sur les réseaux sociaux ?', answer: 'Oui, la plupart des plateformes modernes (Instagram, Twitter, Discord) prennent en charge l\'Unicode. Cependant, certains réseaux ou appareils peuvent filtrer ou tronquer les caractères excédentaires à très haute intensité pour maintenir la lisibilité de l\'interface.' },
|
|
12
|
+
{ question: 'Comment puis-je supprimer l\'effet Zalgo d\'un texte ?', answer: 'Pour nettoyer un texte corrompu, vous pouvez utiliser la normalisation de chaîne JavaScript ou simplement le coller dans un éditeur de texte basique qui n\'accepte que le texte brut. Notre outil est purement créatif et n\'endommage pas le contenu original.' },
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
const howTo: ZalgoGeneratorLocaleContent['howTo'] = [
|
|
16
|
+
{ name: 'Écrire le message de base', text: 'Entrez le texte que vous souhaitez "corrompre" dans la zone de texte principale.' },
|
|
17
|
+
{ name: 'Ajuster l\'intensité du chaos', text: 'Déplacez le curseur pour définir le nombre de caractères de combinaison à empiler. Plus l\'intensité est élevée, plus il est difficile à lire.' },
|
|
18
|
+
{ name: 'Sélectionner la direction du débordement', text: 'Choisissez si la corruption doit croître vers le haut, vers le bas ou dans toutes les directions simultanément.' },
|
|
19
|
+
{ name: 'Copier le résultat', text: 'Cliquez sur le bouton de copie. Le texte résultant inclut tous les octets invisibles nécessaires pour maintenir l\'effet glitch.' },
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
23
|
+
'@context': 'https://schema.org',
|
|
24
|
+
'@type': 'FAQPage',
|
|
25
|
+
mainEntity: faq.map((item) => ({
|
|
26
|
+
'@type': 'Question',
|
|
27
|
+
name: item.question,
|
|
28
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
29
|
+
})),
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const howToSchema: WithContext<HowTo> = {
|
|
33
|
+
'@context': 'https://schema.org',
|
|
34
|
+
'@type': 'HowTo',
|
|
35
|
+
name: title,
|
|
36
|
+
description,
|
|
37
|
+
step: howTo.map((step) => ({
|
|
38
|
+
'@type': 'HowToStep',
|
|
39
|
+
name: step.name,
|
|
40
|
+
text: step.text,
|
|
41
|
+
})),
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
45
|
+
'@context': 'https://schema.org',
|
|
46
|
+
'@type': 'SoftwareApplication',
|
|
47
|
+
name: title,
|
|
48
|
+
description,
|
|
49
|
+
applicationCategory: 'UtilitiesApplication',
|
|
50
|
+
operatingSystem: 'Web',
|
|
51
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
52
|
+
inLanguage: 'fr',
|
|
53
|
+
};
|
|
54
|
+
|
|
3
55
|
export const content: ZalgoGeneratorLocaleContent = {
|
|
4
|
-
slug
|
|
5
|
-
title
|
|
6
|
-
description
|
|
56
|
+
slug,
|
|
57
|
+
title,
|
|
58
|
+
description,
|
|
7
59
|
faqTitle: 'Questions Fréquemment Posées',
|
|
8
60
|
bibliographyTitle: 'Bibliographie du Chaos',
|
|
9
61
|
ui: {
|
|
@@ -50,22 +102,12 @@ export const content: ZalgoGeneratorLocaleContent = {
|
|
|
50
102
|
{ term: 'Art Glitch', definition: 'Une esthétique qui incorpore ou simule intentionnellement des erreurs, des artefacts et des corruptions dans les médias numériques comme technique expressive.' },
|
|
51
103
|
]},
|
|
52
104
|
],
|
|
53
|
-
faq
|
|
54
|
-
{ question: 'Qu\'est-ce que le texte Zalgo ?', answer: 'C\'est un type de texte qui utilise excessivement les caractères de combinaison Unicode (diacritiques). Lorsqu\'ils sont empilés verticalement, ces caractères "débordent" de leur ligne d\'origine, créant un effet visuel de corruption, de désordre ou d\'horreur populaire dans la culture internet.' },
|
|
55
|
-
{ question: 'Pourquoi le texte Zalgo a-t-il l\'air si étrange ?', answer: 'Il exploite une fonctionnalité de la norme Unicode qui permet d\'ajouter des marques au-dessus, en dessous ou à travers une lettre de base. Comme il n\'y a pas de limite stricte au nombre de marques pouvant être ajoutées, le texte peut "envahir" les lignes supérieures ou inférieures.' },
|
|
56
|
-
{ question: 'Puis-je utiliser ce texte sur les réseaux sociaux ?', answer: 'Oui, la plupart des plateformes modernes (Instagram, Twitter, Discord) prennent en charge l\'Unicode. Cependant, certains réseaux ou appareils peuvent filtrer ou tronquer les caractères excédentaires à très haute intensité pour maintenir la lisibilité de l\'interface.' },
|
|
57
|
-
{ question: 'Comment puis-je supprimer l\'effet Zalgo d\'un texte ?', answer: 'Pour nettoyer un texte corrompu, vous pouvez utiliser la normalisation de chaîne JavaScript ou simplement le coller dans un éditeur de texte basique qui n\'accepte que le texte brut. Notre outil est purement créatif et n\'endommage pas le contenu original.' },
|
|
58
|
-
],
|
|
105
|
+
faq,
|
|
59
106
|
bibliography: [
|
|
60
107
|
{ name: 'Norme Unicode - Caractères de Combinaison', url: 'https://www.unicode.org/standard/principles.html#Combining_Characters' },
|
|
61
108
|
{ name: 'Le Phénomène du Texte Zalgo (Know Your Meme)', url: 'https://knowyourmeme.com/memes/zalgo' },
|
|
62
109
|
{ name: 'MDN - Normalisation de chaîne JavaScript', url: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize' },
|
|
63
110
|
],
|
|
64
|
-
howTo
|
|
65
|
-
|
|
66
|
-
{ name: 'Ajuster l\'intensité du chaos', text: 'Déplacez le curseur pour définir le nombre de caractères de combinaison à empiler. Plus l\'intensité est élevée, plus il est difficile à lire.' },
|
|
67
|
-
{ name: 'Sélectionner la direction du débordement', text: 'Choisissez si la corruption doit croître vers le haut, vers le bas ou dans toutes les directions simultanément.' },
|
|
68
|
-
{ name: 'Copier le résultat', text: 'Cliquez sur le bouton de copie. Le texte résultant inclut tous les octets invisibles nécessaires pour maintenir l\'effet glitch.' },
|
|
69
|
-
],
|
|
70
|
-
schemas: []
|
|
111
|
+
howTo,
|
|
112
|
+
schemas: [faqSchema as any, howToSchema as any, appSchema],
|
|
71
113
|
};
|
package/src/tools.ts
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
import type { ToolDefinition } from './types';
|
|
2
|
+
import { BEAD_PATTERN_GENERATOR_TOOL } from './tool/bead-pattern-generator/index';
|
|
3
|
+
import { DICE_ROLLER_TOOL } from './tool/dice-roller/index';
|
|
4
|
+
import { EXCUSE_GENERATOR_TOOL } from './tool/excuse-generator/index';
|
|
5
|
+
import { FORTUNE_COOKIE_TOOL } from './tool/fortune-cookie/index';
|
|
6
|
+
import { SYNESTHESIA_PAINTER_TOOL } from './tool/synesthesia-painter/index';
|
|
7
|
+
import { ZALGO_GENERATOR_TOOL } from './tool/zalgo-generator/index';
|
|
2
8
|
|
|
3
|
-
export const ALL_TOOLS: ToolDefinition[] = [
|
|
9
|
+
export const ALL_TOOLS: ToolDefinition[] = [
|
|
10
|
+
BEAD_PATTERN_GENERATOR_TOOL,
|
|
11
|
+
DICE_ROLLER_TOOL,
|
|
12
|
+
EXCUSE_GENERATOR_TOOL,
|
|
13
|
+
FORTUNE_COOKIE_TOOL,
|
|
14
|
+
SYNESTHESIA_PAINTER_TOOL,
|
|
15
|
+
ZALGO_GENERATOR_TOOL,
|
|
16
|
+
];
|
|
4
17
|
|