diff --git a/language/es_x_tu/help/markdown.php b/language/es_x_tu/help/markdown.php
index 7a3486f..0445362 100644
--- a/language/es_x_tu/help/markdown.php
+++ b/language/es_x_tu/help/markdown.php
@@ -46,7 +46,7 @@
'HELP_MARKDOWN_QUOTE_QUESTION' => 'Citando texto en respuestas',
'HELP_MARKDOWN_QUOTE_ANSWER' => 'Para citar texto, agrega >
y opcionalmente un espacio antes de la línea de texto, ej.
> Texto citado
se convertirá ', 'HELP_MARKDOWN_CODE_QUESTION' => 'Mostrando código', - 'HELP_MARKDOWN_CODE_ANSWER' => 'Para mostrar código, enciérralo entre un par deTexto citado
```
o ~~~
, o alternativamente agrega 4 espacios en blanco antes de cada línea. También puedes especificar el lenguaje en el primer marcador, ej.```ruby
puts "Hola #{usuario}!"
```
se convertirá Code: Seleccionar todo
puts "Hello #{user}!"
```
or ~~~
, or alternatively add 4 empty spaces before each line. You can also specify the language in the first marker, e.g.```ruby
puts "Hello #{user}!"
```
will become Code: Select all
puts "Hello #{user}!"
`
o ``
, ej.tag `<div>`
o tag ``<div>``
se convertirá<div>
',