Skip to content

Commit 95d884f

Browse files
committed
Fix the issue related to the copy button in code blocks
1 parent 74e510c commit 95d884f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+160
-160
lines changed

src/content/0/en/part0b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ The mechanism of invoking event handlers is very common in JavaScript. Event han
280280
281281
We can think of HTML pages as implicit tree structures.
282282
283-
<pre>
283+
```
284284
html
285285
head
286286
link
@@ -296,7 +296,7 @@ html
296296
form
297297
input
298298
input
299-
</pre>
299+
```
300300
301301
The same treelike structure can be seen on the console's <i>Elements</i> tab.
302302

src/content/0/es/part0b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ El mecanismo de invocación de controladores de eventos es muy común en JavaScr
280280
281281
Podemos pensar en las páginas HTML como estructuras de árbol implícitas.
282282
283-
<pre>
283+
```
284284
html
285285
head
286286
link
@@ -296,7 +296,7 @@ html
296296
form
297297
input
298298
input
299-
</pre>
299+
```
300300
301301
La misma estructura arbórea se puede ver en la pestaña de la consola <i>Elements (Elementos)</i>.
302302

src/content/0/fi/osa0b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ Tapahtumankäsittelijöihin liittyvä mekanismi koodin suorittamiseen on JavaScr
278278
279279
Voimme ajatella, että HTML-sivut muodostavat implisiittisen puurakenteen
280280
281-
<pre>
281+
```
282282
html
283283
head
284284
link
@@ -294,7 +294,7 @@ html
294294
form
295295
input
296296
input
297-
</pre>
297+
```
298298
299299
Sama puumaisuus on nähtävissä konsolin välilehdellä </i>Elements</i>:
300300

src/content/0/fr/part0b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ Ce mécanisme consistant à appeler des gestionnaires d'événements est très c
275275
276276
Nous pouvons considérer les pages HTML comme des arborescences implicites.
277277
278-
<pre>
278+
```
279279
html
280280
head
281281
link
@@ -291,7 +291,7 @@ html
291291
form
292292
input
293293
input
294-
</pre>
294+
```
295295
296296
La même structure arborescente peut être vue sur l'onglet <i>Éléments</i> de la console.
297297

src/content/0/ptbr/part0b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ O mecanismo de chamada de gerenciadores de eventos é muito comum em JavaScript.
280280
281281
Podemos pensar em páginas HTML como estruturas implícitas de uma árvore.
282282
283-
<pre>
283+
```
284284
html
285285
head
286286
link
@@ -296,7 +296,7 @@ html
296296
form
297297
input
298298
input
299-
</pre>
299+
```
300300
301301
A mesma estrutura de árvore pode ser vista na guia <i>Elementos</i> do console.
302302

src/content/0/zh/part0b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ xhttp.onreadystatechange = function() {
337337
<!-- We can think of HTML-pages as implicit tree structures.-->
338338
我们可以将 html 页面看作隐式树结构。
339339
340-
<pre>
340+
```
341341
html
342342
head
343343
link
@@ -353,7 +353,7 @@ html
353353
form
354354
input
355355
input
356-
</pre>
356+
```
357357
<!-- The same treelike structure can be seen on the console tab <i>Elements</i>.-->
358358
同样的树状结构可以在控制台的<i>Elements元素</i>选项卡上看到。
359359

src/content/2/en/part2a.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,15 +620,15 @@ Define a component responsible for formatting a single course called <i>Course</
620620

621621
The component structure of the application can be, for example, the following:
622622

623-
<pre>
623+
```
624624
App
625625
Course
626626
Header
627627
Content
628628
Part
629629
Part
630630
...
631-
</pre>
631+
```
632632

633633
Hence, the <i>Course</i> component contains the components defined in the previous part, which are responsible for rendering the course name and its parts.
634634

src/content/2/en/part2c.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,12 +398,12 @@ We have also added a few helpful prints, which clarify the progression of the ex
398398

399399
This is printed to the console:
400400

401-
<pre>
401+
```
402402
render 0 notes
403403
effect
404404
promise fulfilled
405405
render 3 notes
406-
</pre>
406+
```
407407

408408
First, the body of the function defining the component is executed and the component is rendered for the first time. At this point <i>render 0 notes</i> is printed, meaning data hasn't been fetched from the server yet.
409409

src/content/2/es/part2a.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,15 +625,15 @@ Define un componente responsable de formatear un solo curso llamado <i>Course</i
625625

626626
La estructura de componentes de la aplicación puede ser, por ejemplo, la siguiente:
627627

628-
<pre>
628+
```
629629
App
630630
Course
631631
Header
632632
Content
633633
Part
634634
Part
635635
...
636-
</pre>
636+
```
637637

638638
Por lo tanto, el componente <i>Course</i> contiene los componentes definidos en la parte anterior, que son responsables de renderizar el nombre del curso y sus partes.
639639

src/content/2/es/part2c.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,12 +404,12 @@ También hemos agregado algunas impresiones útiles, que aclaran la progresión
404404

405405
Esto se imprime en la consola
406406

407-
<pre>
407+
```
408408
render 0 notes
409409
effect
410410
promise fulfilled
411411
render 3 notes
412-
</pre>
412+
```
413413

414414
Primero se ejecuta el cuerpo de la función que define el componente y el componente se renderiza por primera vez. En este punto, se imprime <i>render 0 notes</i>, lo que significa que los datos aún no se han obtenido del servidor.
415415

0 commit comments

Comments
 (0)