You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/content/pages/es/posts/markdown-style-guide.md
+35-35Lines changed: 35 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ duration: 5min
6
6
7
7
[[toc]]
8
8
9
-
Here is a sample of some basic Markdown syntax that can be used when writing Markdown content in Astro.
9
+
A continuación se muestra un ejemplo de sintaxis básica de Markdown que se puede utilizar al escribir contenido de Markdown en Astro.
10
10
11
-
## Headings
11
+
## Encabezados
12
12
13
-
The following HTML `<h1>`—`<h6>`elements represent six levels of section headings. `<h1>`is the highest section level while `<h6>`is the lowest.
13
+
Los siguientes elementos HTML `<h1>`—`<h6>`representan seis niveles de encabezados de sección. `<h1>`es el nivel de sección más alto, mientras que `<h6>`es el más bajo.
14
14
15
15
# H1
16
16
@@ -24,79 +24,79 @@ The following HTML `<h1>`—`<h6>` elements represent six levels of section head
24
24
25
25
###### H6
26
26
27
-
## Paragraph
27
+
## Párrafo
28
28
29
29
Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
30
30
31
31
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
32
32
33
-
## Images
33
+
## Imágenes
34
34
35
-
### Syntax
35
+
### Sintaxis
36
36
37
37
```markdown
38
38

39
39
```
40
40
41
-
### Output
41
+
### Salida
42
42
43
43

44
44
45
-
## Blockquotes
45
+
## Citas en bloque
46
46
47
-
The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer`or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
47
+
El elemento blockquote representa contenido que se cita de otra fuente, opcionalmente con una cita que debe estar dentro de un `footer`o elemento de cita `cite`, y opcionalmente con cambios en línea como anotaciones y abreviaturas.
48
48
49
-
### Blockquote without attribution
49
+
### Cita en bloque sin atribución
50
50
51
-
#### Syntax
51
+
#### Sintaxis
52
52
53
53
```markdown
54
54
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
55
55
> **Note** that you can use _Markdown syntax_ within a blockquote.
56
56
```
57
57
58
-
#### Output
58
+
#### Salida
59
59
60
60
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
61
61
> **Note** that you can use _Markdown syntax_ within a blockquote.
62
62
63
-
### Blockquote with attribution
63
+
### Cita en bloque con atribución
64
64
65
-
#### Syntax
65
+
#### Sintaxis
66
66
67
67
```markdown
68
68
> Don't communicate by sharing memory, share memory by communicating.<br>
69
69
> — <cite>Rob Pike[^1]</cite>
70
70
```
71
71
72
-
#### Output
72
+
#### Salida
73
73
74
74
> Don't communicate by sharing memory, share memory by communicating.<br>
75
75
> — <cite>Rob Pike[^1]</cite>
76
76
77
77
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
78
78
79
-
## Tables
79
+
## Tablas
80
80
81
-
### Syntax
81
+
### Sintaxis
82
82
83
83
```markdown
84
84
| Italics | Bold | Code |
85
85
| --------- | -------- | ------ |
86
86
| _italics_ | **bold** | `code` |
87
87
```
88
88
89
-
### Output
89
+
### Salida
90
90
91
91
| Italics | Bold | Code |
92
92
| --------- | -------- | ------ |
93
93
|_italics_|**bold**|`code`|
94
94
95
-
## Code Blocks
95
+
## Bloques de código
96
96
97
-
### Syntax
97
+
### Sintaxis
98
98
99
-
we can use 3 backticks ``` in new line and write snippet and close with 3 backticks on new line and to highlight language specific syntax, write one word of language name after first 3 backticks, for eg. html, javascript, css, markdown, typescript, txt, bash
99
+
podemos usar 3 comillas invertidas ``` en una nueva línea y escribir un fragmento y cerrar con 3 comillas invertidas en una nueva línea y para resaltar la sintaxis específica del idioma, escribir una palabra del nombre del idioma después de las primeras 3 comillas invertidas, por ejemplo, html, javascript, css, markdown, typescript, txt, bash
100
100
101
101
````markdown
102
102
```html
@@ -113,7 +113,7 @@ we can use 3 backticks ``` in new line and write snippet and close with 3 backti
113
113
```
114
114
````
115
115
116
-
### Output
116
+
### Salida
117
117
118
118
```html
119
119
<!doctype html>
@@ -128,43 +128,43 @@ we can use 3 backticks ``` in new line and write snippet and close with 3 backti
128
128
</html>
129
129
```
130
130
131
-
## List Types
131
+
## Tipos de listas
132
132
133
-
### Ordered List
133
+
### Lista ordenada
134
134
135
-
#### Syntax
135
+
#### Sintaxis
136
136
137
137
```markdown
138
138
1. First item
139
139
2. Second item
140
140
3. Third item
141
141
```
142
142
143
-
#### Output
143
+
#### Salida
144
144
145
145
1. First item
146
146
2. Second item
147
147
3. Third item
148
148
149
-
### Unordered List
149
+
### Lista desordenada
150
150
151
-
#### Syntax
151
+
#### Sintaxis
152
152
153
153
```markdown
154
154
- List item
155
155
- Another item
156
156
- And another item
157
157
```
158
158
159
-
#### Output
159
+
#### Salida
160
160
161
161
- List item
162
162
- Another item
163
163
- And another item
164
164
165
-
### Nested list
165
+
### Lista anidada
166
166
167
-
#### Syntax
167
+
#### Sintaxis
168
168
169
169
```markdown
170
170
- Fruit
@@ -176,7 +176,7 @@ we can use 3 backticks ``` in new line and write snippet and close with 3 backti
176
176
- Cheese
177
177
```
178
178
179
-
#### Output
179
+
#### Salida
180
180
181
181
- Fruit
182
182
- Apple
@@ -186,9 +186,9 @@ we can use 3 backticks ``` in new line and write snippet and close with 3 backti
186
186
- Milk
187
187
- Cheese
188
188
189
-
## Other Elements — abbr, sub, sup, kbd, mark
189
+
## Otros elementos: abbr, sub, sup, kbd, mark
190
190
191
-
### Syntax
191
+
### Sintaxis
192
192
193
193
```markdown
194
194
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
@@ -202,7 +202,7 @@ Press <kbd>CTRL</kbd> + <kbd>ALT</kbd> + <kbd>Delete</kbd> to end the session.
202
202
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
203
203
```
204
204
205
-
### Output
205
+
### Salida
206
206
207
207
<abbrtitle="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
0 commit comments