mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-01-17 21:49:22 +01:00
Completed translation
This commit is contained in:
parent
2c511db07a
commit
4bf1ed2fed
@ -1,234 +1,231 @@
|
|||||||
<!-- Markdown is a superset of HTML, so any HTML file is valid Markdown, that
|
|
||||||
means we can use HTML elements in Markdown, such as the comment element, and
|
|
||||||
they won't be affected by a markdown parser. However, if you create an HTML
|
|
||||||
element in your markdown file, you cannot use markdown syntax within that
|
|
||||||
element's contents. -->
|
|
||||||
|
|
||||||
<!-- Markdown está basado en HTML, así que cualquier archivo HTML es Markdown
|
<!-- Markdown está basado en HTML, así que cualquier archivo HTML es Markdown
|
||||||
válido, eso significa que
|
válido, eso significa que podemos usar elementos HTML en Markdown como, por
|
||||||
|
ejemplo, el comentario y no serán afectados por un parseador Markdown. Aún
|
||||||
|
así si creas un elemento HTML en tu archivo Markdown no podrás usar sintaxis
|
||||||
|
Markdown dentro de él. -->
|
||||||
|
|
||||||
-->
|
<!-- La implementación de Markdown cambia de acuerdo al parseador. Esta
|
||||||
|
guía servirá para clarificar cuales características son universales y
|
||||||
<!-- Markdown also varies in implementation from one parser to a next. This
|
cuales son específicas de cada parseador-->
|
||||||
guide will attempt to clarify when features are universal or when they are
|
|
||||||
specific to a certain parser. -->
|
|
||||||
|
|
||||||
<!-- Headers -->
|
<!-- Headers -->
|
||||||
<!-- You can create HTML elements <h1> through <h6> easily by prepending the
|
<!-- Puedes crear headers HTML fácilmente precediendo al texto con una serie
|
||||||
text you want to be in that element by a number of hashes (#) -->
|
de símbolos de números (#)-->
|
||||||
# This is an <h1>
|
|
||||||
## This is an <h2>
|
|
||||||
### This is an <h3>
|
|
||||||
#### This is an <h4>
|
|
||||||
##### This is an <h5>
|
|
||||||
###### This is an <h6>
|
|
||||||
|
|
||||||
<!-- Markdown also provides us with two alternative ways of indicating h1 and h2 -->
|
# Esto es un <h1>
|
||||||
This is an h1
|
## Esto es un <h2>
|
||||||
|
### Esto es un <h3>
|
||||||
|
#### Esto es un <h4>
|
||||||
|
##### Esto es un <h5>
|
||||||
|
###### Esto es un <h6>
|
||||||
|
|
||||||
|
<!-- Markdown también nos proveé con dos alternativas para indicar h1 y h2 -->
|
||||||
|
Esto es un h1
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is an h2
|
Esto es un h2
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
<!-- Simple text styles -->
|
<!-- Estilos para texto plano -->
|
||||||
<!-- Text can be easily styled as italic, bold, or strikethrough using markdown -->
|
<!-- El texto puede ser fácilmente estilizaedo con italicas, negritas o tachado
|
||||||
|
usando markdown -->
|
||||||
|
|
||||||
*This text is in italics.*
|
*Este texto está en itálicas.*
|
||||||
_And so is this text._
|
_Al igual que este texto._
|
||||||
|
|
||||||
**This text is in bold.**
|
**Este texto está en negritas.**
|
||||||
__And so is this text.__
|
__Al igual que este texto.__
|
||||||
|
|
||||||
***This text is in both.***
|
***Este texto tiene ambos estilos.***
|
||||||
**_As is this!_**
|
**_Al igual que este!_**
|
||||||
*__And this!__*
|
*__¡Y este!__*
|
||||||
|
|
||||||
<!-- In Github Flavored Markdown, which is used to render markdown files on
|
<!-- En Github Flavored Markdown, el cual es usado para mostrar archivos
|
||||||
Github, we also have: -->
|
Markdown en Github, también tenemos: -->
|
||||||
|
|
||||||
~~This text is rendered with strikethrough.~~
|
~~Este texto está tachado.~~
|
||||||
|
|
||||||
<!-- Paragraphs are a one or multiple adjacent lines of text separated by one or
|
<!-- Los párrafos son una o múltuples líneas de texto adyacentes separadas por
|
||||||
multiple blank lines. -->
|
una o múltiples líneas en blanco-->
|
||||||
|
|
||||||
This is a paragraph. I'm typing in a paragraph isn't this fun?
|
Este es un párrafo. Estoy escribiendo un párrafo, ¿No es divertido?
|
||||||
|
|
||||||
Now I'm in paragraph 2.
|
Ahora estoy en el párrafo dos.
|
||||||
I'm still in paragraph 2 too!
|
¡Sigo en el párrafo dos!
|
||||||
|
|
||||||
|
¡Estoy en el párrafo tres!
|
||||||
|
|
||||||
I'm in paragraph three!
|
<!-- Si en algún momento quieres insertar un break HTML <br />, puedes terminar
|
||||||
|
un párrafo con dos o más espacios y luego empieza un párrafo nuevo-->
|
||||||
|
|
||||||
<!-- Should you ever want to insert an HTML <br /> tag, you can end a paragraph
|
Termino con dos espacios (selecciona esta línea completa para que los veas).
|
||||||
with two or more spaces and then begin a new paragraph. -->
|
|
||||||
|
|
||||||
I end with two spaces (highlight me to see them).
|
¡Hay un <br /> arriba de mí!
|
||||||
|
|
||||||
There's a <br /> above me!
|
<!-- Las citas de bloque son fáciles y se pueden hacer con el caracter >. -->
|
||||||
|
|
||||||
<!-- Block quotes are easy and done with the > character. -->
|
> Esta es una cita de bloque. Puedes
|
||||||
|
> envolver tus líneas manualmente y poner un `>` antes de cada línea o puedes dejar que tus líneas sean muy largas y que se envuelvan solas.
|
||||||
|
> No hay diferencia, siempre y cuando empiecen con `>`.
|
||||||
|
|
||||||
> This is a block quote. You can either
|
> ¿También puedes usar más de un nivel
|
||||||
> manually wrap your lines and put a `>` before every line or you can let your lines get really long and wrap on their own.
|
>> de indentación?
|
||||||
> It doesn't make a difference so long as they start with a `>`.
|
> Esto es muy útil ¿No?
|
||||||
|
|
||||||
> You can also use more than one level
|
<!-- Listas -->
|
||||||
>> of indentation?
|
<!-- Las listas desordenadas se hacen usando asteriscos, símbolos de más,
|
||||||
> How neat is that?
|
o guiones -->
|
||||||
|
|
||||||
<!-- Lists -->
|
|
||||||
<!-- Unordered lists can be made using asterisks, pluses, or hyphens -->
|
|
||||||
|
|
||||||
* Item
|
* Item
|
||||||
* Item
|
* Item
|
||||||
* Another item
|
* Otro item
|
||||||
|
|
||||||
or
|
o
|
||||||
|
|
||||||
+ Item
|
+ Item
|
||||||
+ Item
|
+ Item
|
||||||
+ One more item
|
+ Un item más
|
||||||
|
|
||||||
or
|
o
|
||||||
|
|
||||||
- Item
|
- Item
|
||||||
- Item
|
- Item
|
||||||
- One last item
|
- El último item
|
||||||
|
|
||||||
<!-- Ordered lists are done with a number followed by a period -->
|
<!-- Las listas ordenadas se logran con un número seguido de un punto -->
|
||||||
|
|
||||||
1. Item one
|
1. Item uno
|
||||||
2. Item two
|
2. Item dos
|
||||||
3. Item three
|
3. Item tres
|
||||||
|
|
||||||
<!-- You don't even have to label the items correctly and markdown will still
|
<!-- Aunque Markdown mostrará los items correctamente en orden, esto no
|
||||||
render the numbers in order, but this may not be a good idea -->
|
es una buena idea -->
|
||||||
|
|
||||||
1. Item one
|
1. Item uno
|
||||||
1. Item two
|
1. Item dos
|
||||||
1. Item three
|
1. Item tres
|
||||||
<!-- (This renders the same as the above example) -->
|
<!-- (Esto muestra lo mismo que el ejemplo de arriba) -->
|
||||||
|
|
||||||
<!-- You can also use sublists -->
|
<!-- También puedes usar sub-listas -->
|
||||||
|
|
||||||
1. Item one
|
1. Item uno
|
||||||
2. Item two
|
2. Item dos
|
||||||
3. Item three
|
3. Item tres
|
||||||
* Sub-item
|
* Sub-item
|
||||||
* Sub-item
|
* Sub-item
|
||||||
4. Item four
|
4. Item cuatro
|
||||||
|
|
||||||
<!-- Code blocks -->
|
<!-- Bloques de código -->
|
||||||
<!-- You can indicate a code block (which uses the <code> element) by indenting
|
<!-- Puedes indicar un bloque de código (usan los elementos <code>) indentando
|
||||||
a line with four spaces or a tab -->
|
una línea con cuatro espacios o un tab-->
|
||||||
|
|
||||||
This is code
|
Esto es código
|
||||||
So is this
|
Esto también
|
||||||
|
|
||||||
<!-- You can also re-tab (or add an additional four spaces) for indentation
|
<!-- También puedes insertar dos tabs (o cuatro espacios adicionales)
|
||||||
inside your code -->
|
para indentar dentro del código -->
|
||||||
|
|
||||||
my_array.each do |item|
|
my_array.each do |item|
|
||||||
puts item
|
puts item
|
||||||
end
|
end
|
||||||
|
|
||||||
<!-- Inline code can be created using the backtick character ` -->
|
<!-- Código dentro de la línea puede ser escrito usando la comilla ` -->
|
||||||
|
|
||||||
John didn't even know what the `go_to()` function did!
|
¡John no sabía lo que la función `go_to()` hacía!
|
||||||
|
|
||||||
<!-- In Github Flavored Markdown, you can use a special syntax for code -->
|
<!-- Con Github Flavored Markdown, puedes usar una sintaxis especial para código -->
|
||||||
|
|
||||||
\`\`\`ruby <!-- except remove those backslashes when you do this, just ```ruby ! -->
|
\`\`\`ruby <!-- quita esas comillas cuando lo hagas, deja sólo ```ruby ! -->
|
||||||
def foobar
|
def foobar
|
||||||
puts "Hello world!"
|
puts "Hello world!"
|
||||||
end
|
end
|
||||||
\`\`\` <!-- here too, no backslashes, just ``` -->
|
\`\`\` <!-- aquí también, sin comillas, sólo ``` -->
|
||||||
|
|
||||||
<-- The above text doesn't require indenting, plus Github will use syntax
|
<!-- El texto de arriba no necesita indentación, aparte Github usará
|
||||||
highlighting of the language you specify after the ``` -->
|
resaltará la sintaxis del lenguaje que especifiques después de ``` -->
|
||||||
|
|
||||||
<!-- Horizontal rule (<hr />) -->
|
<!-- Regla horizontal (<hr />) -->
|
||||||
<!-- Horizontal rules are easily added with three or more asterisks or hyphens,
|
<!-- Las reglas horizontales se agregan fácilmente con tres o más asteriscos o guiones,
|
||||||
with or without spaces. -->
|
con o sin espacios. -->
|
||||||
|
|
||||||
***
|
***
|
||||||
---
|
---
|
||||||
- - -
|
- - -
|
||||||
****************
|
****************
|
||||||
|
|
||||||
<!-- Links -->
|
<!-- Ligas -->
|
||||||
<!-- One of the best things about markdown is how easy it is to make links. Put
|
<!-- Una de las mejores cosas de Markdown es la facilidad para hacer ligas. Pon
|
||||||
the text to display in hard brackets [] followed by the url in parentheses () -->
|
el texto a mostrar en corchetes [] seguidos por la URL en paréntesis () -->
|
||||||
|
|
||||||
[Click me!](http://test.com/)
|
[¡Haz click!](http://test.com/)
|
||||||
|
|
||||||
<!-- You can also add a link title using quotes inside the parentheses -->
|
<!-- También puedes agregar el titulo de la liga usando comillas dentro de los paréntesis -->
|
||||||
|
|
||||||
[Click me!](http://test.com/ "Link to Test.com")
|
[¡Haz click!](http://test.com/ "Liga al test.com")
|
||||||
|
|
||||||
<!-- Relative paths work too. -->
|
<!-- También funcionan las rutas relativas. -->
|
||||||
|
|
||||||
[Go to music](/music/).
|
[Ir a la música](/music/).
|
||||||
|
|
||||||
<!-- Markdown also supports reference style links -->
|
<!-- Markdown también soporta ligas con estilo de referencia -->
|
||||||
|
|
||||||
[Click this link][link1] for more info about it!
|
¡[Has click a esta liga][liga1] para más información!
|
||||||
[Also check out this link][foobar] if you want to.
|
[También mira esta liag][foobar] si quieres.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- The title can also be in single quotes or in parentheses, or omitted
|
<!-- El título también puede estar en comillas simples o dentro de paréntesis,
|
||||||
entirely. The references can be anywhere in your document and the reference IDs
|
también se pueden omitir completamente. Las referencias pueden estar en cualquier
|
||||||
can be anything so long as they are unique. -->
|
lugar en tu documento y los IDs de referencia pueden ser lo que sea mientras sean únicos. -->
|
||||||
|
|
||||||
<!-- There is also "implicit naming" which lets you use the link text as the id -->
|
<!-- También hay "nombramiento implicito" el cual te permite usar el texto de la liga como id -->
|
||||||
|
|
||||||
[This][] is a link.
|
[Esta][] es una liga.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- But it's not that commonly used. -->
|
<!-- Pero no se usa comúnmente. -->
|
||||||
|
|
||||||
<!-- Images -->
|
<!-- Imagenes -->
|
||||||
<!-- Images are done the same way as links but with an exclamation point in front! -->
|
<!-- Las imagenes se hacen de la misma forma que las ligas pero con un símbolo de exclamaciónal frente! -->
|
||||||
|
|
||||||
![This is hover-text (alt text) for my image](http://imgur.com/myimage.jpg "An optional title")
|
![Esta es una etiqueta (texto alternativo) para mi imagen](http://imgur.com/myimage.jpg "Un titulo opcional")
|
||||||
|
|
||||||
<!-- And reference style works as expected -->
|
<!-- Y el estilo de referencia funciona como se espera -->
|
||||||
|
|
||||||
![This is the hover-text.][myimage]
|
![Esta es una etiqueta.][myimage]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Miscellany -->
|
<!-- Misceláneos -->
|
||||||
<!-- Auto-links -->
|
<!-- Auto-ligas -->
|
||||||
|
|
||||||
<http://testwebsite.com/> is equivalent to
|
<http://testwebsite.com/> equivale a
|
||||||
[http://testwebsite.com/](http://testwebsite.com/)
|
[http://testwebsite.com/](http://testwebsite.com/)
|
||||||
|
|
||||||
<!-- Auto-links for emails -->
|
<!-- Auto-ligas para correos electrónicos -->
|
||||||
|
|
||||||
<foo@bar.com>
|
<foo@bar.com>
|
||||||
|
|
||||||
<!-- Escaping characters -->
|
<!-- Escapando caracteres -->
|
||||||
|
|
||||||
I want to type *this text surrounded by asterisks* but I don't want it to be
|
Quiero escribir *este texto rodeado por asteriscos* pero no quiero que esté en itálicas,
|
||||||
in italics, so I do this: \*this text surrounded by asterisks\*.
|
así que hago esto: \*Este texto está rodeado de asteriscos\*.
|
||||||
|
|
||||||
<!-- Tables -->
|
<!-- Tablas -->
|
||||||
<!-- Tables are only available in Github Flavored Markdown and are slightly
|
<!-- Las tablas sólo están disponibles en Github Flavored Markdown y son un poco pesadas,
|
||||||
cumbersome, but if you really want it: -->
|
pero si de verdad las quieres: -->
|
||||||
|
|
||||||
| Col1 | Col2 | Col3 |
|
| Col1 | Col2 | Col3 |
|
||||||
| :----------- | :------: | ------------: |
|
| :----------- | :------: | ------------: |
|
||||||
| Left-aligned | Centered | Right-aligned |
|
| Izquierda | Centrado | Derecha |
|
||||||
| blah | blah | blah |
|
| blah | blah | blah |
|
||||||
|
|
||||||
<!-- or, for the same results -->
|
<!-- o, para los mismos resultados -->
|
||||||
|
|
||||||
Col 1 | Col2 | Col3
|
Col 1 | Col2 | Col3
|
||||||
:-- | :-: | --:
|
:-- | :-: | --:
|
||||||
Ugh this is so ugly | make it | stop
|
Ugh esto es feo | has que | pare.
|
||||||
|
|
||||||
<!-- The end! -->
|
<!-- ¡El fin! -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user