Construire une bombe de Markdown [fermé]


92

Je suis sûr que la plupart d’entre nous ont entendu parler des bombes zip et autres manipulations similaires, dans lesquelles une intervention malicieuse crée une sortie massivement disproportionnée. Nous avions même une question ici pour faire cela à un compilateur à un moment donné.

Eh bien, il me semble que Markdown est un format de compression qui remplace les balises HTML volumineuses par des jetons MD "compressés". Par conséquent, pourrait-il être possible de construire une bombe de compression dans Markdown?

Règles du challenge:

  • La soumission doit être un morceau de texte de démarcation, entre 50 et 256 caractères. (Imposer un minimum pour éviter qu'une partie intelligente envoie une réponse à 3 caractères ou similaire.)

  • La soumission sera traitée par le processeur Markdown de StackExchange comme implémenté dans ce site.

  • Votre score correspondra au rapport entre le nombre de caractères dans le code HTML résultant et le nombre de caractères de votre texte Markdown.

  • Le score le plus élevé gagne.


5
La Sandbox de formatage peut s'avérer utile pour les personnes qui souhaitent tester avant d'afficher une réponse.
Ingénieur Toast

7
Nous aurons peut-être besoin d’un système standard d’interprète / visualiseur / vérificateur. Les gens obtiennent des nombres d'octets différents pour le même code car certaines balises n'apparaissent pas.
Ingénieur Toast

3
Cela va se transformer en code de castor très utilisé, mathjax / latex
isaacg

6
Faut-il compter le code HTML rendu ou le code HTML source ? La mise en surbrillance de la langue et MathJax sont effectués côté client, pas côté serveur.
user202729

5
Avertissement : Tester de grandes réponses à ce défi peut épuiser votre RAM.
user202729

Réponses:


106

Devis de blocs, 137 469/256 = 536,99

6 908 caractères, 511 nouvelles lignes, 130 050 espaces

Markdown gère les guillemets imbriqués curieusement. Chaque >personnage est transformé en <blockquote></blockquote>un solide ratio de 1 à 25. Mais attendez! Lors du rendu du code HTML, il ajoute également deux espaces par imbrication! Avoir cette tentative de rendu cause un peu de peine à mon navigateur et je vais le garder dans la cage de code pour le moment. N'hésitez pas à le déverrouiller vous-même!

L'entrée de code est composée de 255 >suivis de &car le dernier caractère ne se transforme pas mais il est échappé. Merci BWO ! pour le dernier caractère qui donne le dernier blockquote de la classe spoiler avec une balise p vide à l'intérieur. Merci bta, 11 caractères supplémentaires

Contribution: >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>!

HTML de sortie:

...
  <blockquote>
    <blockquote class="spoiler">
      <p></p>
    </blockquote>
  </blockquote>
...

Voici à quoi cela ressemble dans la vue éditeur! citations de bloc imbriquées folles, fait un grand triangle pointant vers la droite!

Tracer les résultats comme le nombre d' >augmentation suggéré par LambdaBeta: entrez la description de l'image ici


2
Ce qui est amusant, c’est que les guillemets débordent joliment de la colonne de l’article au moins dans l’aperçu de l’édition.
ilkkachu

4
Si vous ajoutez !avant l'esperluette, alors le dernier niveau de blockquote recevra `class =" spoiler "`. Ajoutez-le à n'importe quel autre niveau et cela raccourcira la sortie.
bta

1
J'ai tellement honte que je n'y ai pas pensé
slebetman

1
Maintenant, c'est le "code de la flèche" si je l'ai déjà vu.
ZeroKnight

3
Agréable. Il s’agit d’une croissance quadratique car la j-ème citation ajoute O (j) de nouveaux caractères, nous obtenons donc un grand-O de 1 + 2 + ... + n = O (n ^ 2). Vous pouvez voir ceci sur l'image où la hauteur du triangle est le nombre de guillemets n et sa largeur est O (n), donc sa surface est O (n ^ 2). Les autres réponses non-Mathjax ne semblent être que de la croissance linéaire (celle de milliards de rire Mathjax est exponentielle).
usul

62

MathJax, 529252640 ish / 256 2067393

Un bon vieux code de style mille-rires

$$\def\a{🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣}\def\b{\a\a\a\a\a\a\a\a\a\a\a\a\a}\def\c{\b\b\b\b\b\b\b\b\b\b\b}\def\d{\c\c\c\c\c\c\c\c}\d\d\d\d\d\d\d\d$$

multiplie par un facteur considérable l’inefficacité flagrante de la représentation de caractères exotiques dans MathJax.

La limite de configuration StackExchange MathJax de 10000 extensions de macros sont respectées, alors que les limitations du navigateur du client, qui risquent fortement de causer des problèmes pour développer les macros, ne le sont pas. (Mon navigateur ne coopère pas non plus, ce chiffre est donc une estimation.)


2
Pour tous ceux qui se demandent: en.wikipedia.org/wiki/Billion_laughs_attack
JollyJoker

2
C'est une bonne découverte, mais ce n'est pas Markdown et MathJax n'est pas pris en charge sur ce site, c'est donc en quelque sorte en dehors des paramètres indiqués des règles.
Mason Wheeler

22
areyousure

1
@RomanOdaisky Pas du tout. Vous avez probablement fait le calcul vous-même et êtes parvenu à cette conclusion. Je dis simplement, en tant que professeur de mathématiques et enthousiaste, que cela semble être un exercice cool.
Arthur le

6
🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣

26

Liens raccourcis: 68 960/256 = 269,375

ASCII seulement: 10 114/256 = 39,508

[][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1][][1]
[1]:ftp://^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

La sortie est une séquence d'éléments ressemblant chacun à:

<a href="ftp://%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E%5E"></a>

Après la surcharge fixée pour la création de la référence d'URL, chaque lien de 5 caractères se développe en 42+strlen(url)sortie de caractères. Créez l'URL de manière à ce qu'il y ait un nombre maximal de caractères à échapper, et le nombre de 47+3*strlen(url)caractères par lien augmente . Un peu d'expérimentation a montré que la sortie optimale impliquait 26 liaisons, avec 114 carets par liaison.

Mise à jour : si vous interprétez la limite de "256 caractères" comme incluant les caractères Unicode, vous pouvez dissiper davantage de chaos. Le remplacement des caractères par le caractère de baignoire Unicode (, point de code U + 1F6C1) génère 47+18*strlen(url)des caractères de sortie par caractère d'entrée pour un total de 54 574 68 960 (grâce à la notation de liaison encore plus courte de jimmy23013).

Entrée Unicode:

[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1],[1]
[1]:ftp://🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁🛁

La sortie est une série de:

<a href="ftp://%EF%BF%BD%EF%BF%BD...per character...%EF%BF%BD%EF%BF%BD">1</a>,

Bienvenue chez PPCG! C'est une réponse très intelligente!
Mego

1
1. Vous pouvez utiliser [1],[1],[1]...pour les liens. 2. &quot;a plus de caractères que %5Edans la version non-Unicode.
jimmy23013

15

15888/50 = 317.76: Abus de MathJaX

C'est le code:

$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$$$&$$

Voici à quoi ça ressemble:

&
&
&
&
&
&
&
&
&
&

Le HTML résultant est:

<p><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-618-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3081" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3082"><span id="MathJax-Span-3083" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3084"><span class="mtext" id="MathJax-Span-3085" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-618">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-619-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3086" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3087"><span id="MathJax-Span-3088" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3089"><span class="mtext" id="MathJax-Span-3090" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-619">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-620-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3091" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3092"><span id="MathJax-Span-3093" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3094"><span class="mtext" id="MathJax-Span-3095" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-620">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-621-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3096" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3097"><span id="MathJax-Span-3098" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3099"><span class="mtext" id="MathJax-Span-3100" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-621">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-622-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3101" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3102"><span id="MathJax-Span-3103" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3104"><span class="mtext" id="MathJax-Span-3105" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-622">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-623-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3106" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3107"><span id="MathJax-Span-3108" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3109"><span class="mtext" id="MathJax-Span-3110" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-623">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-624-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3111" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3112"><span id="MathJax-Span-3113" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3114"><span class="mtext" id="MathJax-Span-3115" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-624">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-625-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3116" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3117"><span id="MathJax-Span-3118" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3119"><span class="mtext" id="MathJax-Span-3120" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-625">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-626-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3121" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3122"><span id="MathJax-Span-3123" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3124"><span class="mtext" id="MathJax-Span-3125" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-626">&</script><span class="MathJax_Preview" style="display: none;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-627-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><merror><mtext>Misplaced &amp;amp;</mtext></merror></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-3126" style="width: 5.447em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.503em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(1.114em, 1004.5em, 2.614em, -999.997em); top: -2.164em; left: 0em;"><span class="mrow" id="MathJax-Span-3127"><span id="MathJax-Span-3128" style="display: inline-block;"><span class="merror" id="null"><span class="mrow" id="MathJax-Span-3129"><span class="mtext" id="MathJax-Span-3130" style=""><span style="font-size: 83%;">Misplaced &amp;</span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 2.169em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.397em; border-left: 0px solid; width: 0px; height: 1.537em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><merror><mtext>Misplaced &amp;</mtext></merror></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-627">&</script></p>

N'oubliez pas vos gars de MathJax.

Mise en garde: MathJaX n'affiche l'erreur qu'en cours d'édition. Vous devez donc la visualiser dans l'éditeur. Ceci est toujours une implémentation de démarques sur ce site, donc devrait être valide. Une fois postés, les Misplaced &avertissements deviennent normaux.


14

Mise en surbrillance de la syntaxe, 6376 6464/256 ≈ 25,25

+0.34375 grâce à Ismael Miguel (en utilisant une tabulation au lieu de 4 espaces)!

Ceci utilise l'annotation la plus courte (malheureusement, les espaces semblent compter) pour obtenir la coloration syntaxique lang-c, ouvre un bloc de code et le remplit avec &et 0:

<!-- language: lang-c -->

    &0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0

Nous commençons avec &car il se développe &amp;et utilise 0ensuite, leur alternance crée constamment de nouveaux <span>éléments avec un classattribut. Malheureusement, nous ne pouvons pas utiliser seulement &ou &<&<...comme ils restent dans le même pun-<div>

Cela produit:

<pre class="lang-c prettyprint prettyprinted" style=""><code><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span><span class="pun">&amp;</span><span class="lit">0</span></code></pre></div>

Et rendu par votre navigateur, il en résulte:

&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0&0

Si vous regardez le code source de cette page, le code HTML indique exactement <pre class="lang-c prettyprint-override"><code>&amp;0&amp;0&amp; ... 0&amp;0&amp;0&amp; </code></pre>où il en ...est de même. Les balises span ne sont pas du tout. C'est un score de 739/256 = 2.887
Ingénieur Toast

@EngineerToast: Quel navigateur? J'utilise Firefox 62 et ils apparaissent, j'ai remarqué avec une autre réponse que je reçois une autre partition, donc je suppose que cela dépend du navigateur ..
ბიმო

2
Eh bien ... ça va être un problème. Je demanderai à OP de standardiser.
Ingénieur Toast

@EngineerToast C'est causé par cela .
user202729

1
Au lieu de 4 espaces, utilisez un seul onglet. Ça marche aussi!
Ismael Miguel

5

190/50 = 3.8: italiques

En fin de compte, votre inquiétude à 3 caractères est vraie. *q*génère <em>q</em>un rapport de 10/3. Deux retours chariot donnent <p>...</p>\n\n(les deux retours chariot ne sont pas nécessaires, mais semblent avoir été produits) et un ratio résultant de 9/2. Ratio total, 19/5.

*q*

*q*

*q*

*q*

*q*

*q*

*q*

*q*

*q*

*q*

Résultat HTML:

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

<p><em>q</em></p>

En action:

q

q

q

q

q

q

q

q

q

q


1
Utiliser > qpour utiliser <blockquote>au lieu de, <em>c'est mieux. (note: vous le faites à toutes les autres lignes, sinon ce n'est qu'une balise)
LambdaBeta

@ LambdaBeta Je n'ai même pas pensé à Blockquote. Oui, celui-ci a explosé .
Draco18s

5

222/53 = <4.2: Nasty s'échappe dans une inclusion d'image.

> ![&](https://&)

![&](https://&)
> ![&](https://&)

Résulte en:

Et

Et

Et

Le résultat HTML devrait être approximativement:

<blockquote>
  <p><img src="https://&amp;" alt="&amp;" title=""></p>
</blockquote>

<p><img src="https://&amp;" alt="&amp;" title=""></p>

<blockquote>
  <p><img src="https://&amp;" alt="&amp;" title=""></p>
</blockquote>

Cela abuse de l’inclusion d’images et du fait d’échapper aux choses.

C'était bien mieux, mais apparemment, le démarquage de SE est suffisamment non standard pour le ruiner.

Ma soumission précédente (qui n'était pas comment SE l'a rendue) était:

428/50 = 8.56: Nasty s'échappe dans une inclusion d'image.

![&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&](&)

Le résultat HTML devrait être approximativement:

<p><img src="&amp;" alt="&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;"></p>

Ceci abuse du fait que la plupart des rédacteurs Markdown remplacent les esperluettes du texte alternatif par des esperluettes doublement échappées pour qu'il s'affiche correctement. Pendant ce temps, une seule esperluette est jetée dans la section src afin que l’analyseur le voie réellement comme une image.


Serait ε être traduit de & epsilon; ou & # 949; ?
Jonathan Frech

Je ne sais pas. Autant que je sache, cela ne fonctionne pas réellement - le déboguer un peu maintenant. J'ai utilisé & parce qu'en théorie, le texte alternatif doit apparaître correctement, il doit être échappé deux fois (& amp;). Cela fonctionne dans la plupart des démarques, mais ne semble produire aucun résultat dans SE ...
LambdaBeta

Ne pourriez-vous pas compresser cela [1]:https://&sur une ligne, puis utiliser ![&][1]plusieurs fois?
wizzwizz4

Est-ce que cela doit vraiment être https? http vous donnerait moins de caractères non développés. Ou ftp si cela fonctionne.
user253751

4

MathJax: 13,579 / 52 = 261.13

\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$

Crée juste un tas de MathJax vides en ligne:

Code HTML (peut inspecter l'espace vide ci-dessus):

<p><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1064-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2127" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2128"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1064"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1065-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2129" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2130"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1065"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1066-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2131" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2132"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1066"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1067-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2133" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2134"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1067"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1068-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2135" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2136"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1068"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1069-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2137" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2138"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1069"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1070-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2139" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2140"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1070"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1071-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2141" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2142"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1071"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1072-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2143" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2144"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1072"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1073-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2145" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2146"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1073"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1074-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2147" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2148"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1074"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1075-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2149" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2150"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1075"></script><span class="MathJax_Preview" style="display: none;"></span><span class="MathJax" id="MathJax-Element-1076-Frame" tabindex="0" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; />" role="presentation" style="position: relative;"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-2151" style="width: 0em; display: inline-block;"><span style="display: inline-block; position: relative; width: 0em; height: 0px; font-size: 120%;"><span style="position: absolute; clip: rect(3.785em, 1000em, 4.17em, -999.997em); top: -3.971em; left: 0em;"><span class="mrow" id="MathJax-Span-2152"></span><span style="display: inline-block; width: 0px; height: 3.978em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -0.073em; border-left: 0px solid; width: 0px; height: 0.158em;"></span></span></nobr><span class="MJX_Assistive_MathML" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML"></math></span></span><script type="math/tex" id="MathJax-Element-1076"></script></p>

Vous pouvez obtenir plus avec des erreurs. Regardez ma réponse.
LambdaBeta

3

4830/256 = 18,87

[1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1<p>1](http://localhost:8080/welcome-to-my-fantastic-amazing-homepage-and-why-not-share-it-to-your-facebook-right-now.html)

Une idée basée sur la correction automatique HTML. Pas assez élevé cependant.


2

421/56 = 7,518

>&

&
>&

&
>&

&
>&

&
>&

&
>&

&
>&

Qui produit le code HTML suivant sur SE:

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

<p>&amp;</p>

<blockquote>
  <p>&amp;</p>
</blockquote>

... et la sortie suivante:


Et

Et

Et

Et

Et

Et

Et

Et

Et

Et

Et

Et

Et


0

11190/255 = ~ 43,88

Cette réponse m'a inspiré , mais je suis trop bête pour la battre et atteindre le nombre maximal de caractères, alors, je suppose que je devrai être satisfait de ce que j'ai ¯ \ _ (ツ) _ / ¯. Il y a en fait deux espaces après la dernière citation, mais le formatage ne l'affiche pas.

> - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - > - >

HTML:

<blockquote>
  <ul>
  <li><blockquote>
    <ul><li><blockquote>
      <ul><li><blockquote>
        <ul><li><blockquote>
          <ul><li><blockquote>
            <ul><li><blockquote>
              <ul><li><blockquote>
                <ul><li><blockquote>
                  <ul><li><blockquote>
                    <ul><li><blockquote>
                      <ul><li><blockquote>
                        <ul><li><blockquote>
                          <ul><li><blockquote>
                            <ul><li><blockquote>
                              <ul><li><blockquote>
                                <ul><li><blockquote>
                                  <ul><li><blockquote>
                                    <ul><li><blockquote>
                                      <ul><li><blockquote>
                                        <ul><li><blockquote>
                                          <ul><li><blockquote>
                                            <ul><li><blockquote>
                                              <ul><li><blockquote>
                                                <ul><li><blockquote>
                                                  <ul><li><blockquote>
                                                    <ul><li><blockquote>
                                                      <ul><li><blockquote>
                                                        <ul><li><blockquote>
                                                          <ul><li><blockquote>
                                                            <ul><li><blockquote>
                                                              <ul><li><blockquote>
                                                                <ul><li><blockquote>
                                                                  <ul><li><blockquote>
                                                                    <ul><li><blockquote>
                                                                      <ul><li><blockquote>
                                                                        <ul><li><blockquote>
                                                                          <ul><li><blockquote>
                                                                            <ul><li><blockquote>
                                                                              <ul><li><blockquote>
                                                                                <ul><li><blockquote>
                                                                                  <ul><li><blockquote>
                                                                                    <ul><li><blockquote>
                                                                                      <ul><li><blockquote>
                                                                                        <ul><li><blockquote>
                                                                                          <ul><li><blockquote>
                                                                                            <ul><li><blockquote>
                                                                                              <ul><li><blockquote>
                                                                                                <ul><li><blockquote>
                                                                                                  <ul><li><blockquote>
                                                                                                    <ul><li><blockquote>
                                                                                                      <ul><li><blockquote>
                                                                                                        <ul><li><blockquote>
                                                                                                          <ul><li><blockquote>
                                                                                                            <ul><li><blockquote>
                                                                                                              <ul><li><blockquote>
                                                                                                                <ul><li><blockquote>
                                                                                                                  <ul><li><blockquote>
                                                                                                                    <ul><li><blockquote>
                                                                                                                      <ul><li><blockquote>
                                                                                                                        <ul><li><blockquote>
                                                                                                                          <ul><li><blockquote>
                                                                                                                            <ul><li><blockquote>
                                                                                                                              <ul><li><blockquote>

                                                                                                                              </blockquote></li></ul>
                                                                                                                            </blockquote></li></ul>
                                                                                                                          </blockquote></li></ul>
                                                                                                                        </blockquote></li></ul>
                                                                                                                      </blockquote></li></ul>
                                                                                                                    </blockquote></li></ul>
                                                                                                                  </blockquote></li></ul>
                                                                                                                </blockquote></li></ul>
                                                                                                              </blockquote></li></ul>
                                                                                                            </blockquote></li></ul>
                                                                                                          </blockquote></li></ul>
                                                                                                        </blockquote></li></ul>
                                                                                                      </blockquote></li></ul>
                                                                                                    </blockquote></li></ul>
                                                                                                  </blockquote></li></ul>
                                                                                                </blockquote></li></ul>
                                                                                              </blockquote></li></ul>
                                                                                            </blockquote></li></ul>
                                                                                          </blockquote></li></ul>
                                                                                        </blockquote></li></ul>
                                                                                      </blockquote></li></ul>
                                                                                    </blockquote></li></ul>
                                                                                  </blockquote></li></ul>
                                                                                </blockquote></li></ul>
                                                                              </blockquote></li></ul>
                                                                            </blockquote></li></ul>
                                                                          </blockquote></li></ul>
                                                                        </blockquote></li></ul>
                                                                      </blockquote></li></ul>
                                                                    </blockquote></li></ul>
                                                                  </blockquote></li></ul>
                                                                </blockquote></li></ul>
                                                              </blockquote></li></ul>
                                                            </blockquote></li></ul>
                                                          </blockquote></li></ul>
                                                        </blockquote></li></ul>
                                                      </blockquote></li></ul>
                                                    </blockquote></li></ul>
                                                  </blockquote></li></ul>
                                                </blockquote></li></ul>
                                              </blockquote></li></ul>
                                            </blockquote></li></ul>
                                          </blockquote></li></ul>
                                        </blockquote></li></ul>
                                      </blockquote></li></ul>
                                    </blockquote></li></ul>
                                  </blockquote></li></ul>
                                </blockquote></li></ul>
                              </blockquote></li></ul>
                            </blockquote></li></ul>
                          </blockquote></li></ul>
                        </blockquote></li></ul>
                      </blockquote></li></ul>
                    </blockquote></li></ul>
                  </blockquote></li></ul>
                </blockquote></li></ul>
              </blockquote></li></ul>
            </blockquote></li></ul>
          </blockquote></li></ul>
        </blockquote></li></ul>
      </blockquote></li></ul>
    </blockquote></li></ul>
  </blockquote></li>
  </ul>
</blockquote>

2
le code lui-même ressemble à un blockquote
qwr
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.