Skip to content

Commit 03ce165

Browse files
committed
docs: update
1 parent 7821f22 commit 03ce165

File tree

8 files changed

+42
-42
lines changed

8 files changed

+42
-42
lines changed

docs/src/content/pages/es/posts/markdown-style-guide.md

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ duration: 5min
66

77
[[toc]]
88

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.
1010

11-
## Headings
11+
## Encabezados
1212

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.
1414

1515
# H1
1616

@@ -24,79 +24,79 @@ The following HTML `<h1>`—`<h6>` elements represent six levels of section head
2424

2525
###### H6
2626

27-
## Paragraph
27+
## Párrafo
2828

2929
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.
3030

3131
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
3232

33-
## Images
33+
## Imágenes
3434

35-
### Syntax
35+
### Sintaxis
3636

3737
```markdown
3838
![Alt text](./full/or/relative/path/of/image)
3939
```
4040

41-
### Output
41+
### Salida
4242

4343
![blog placeholder](/blog-placeholder-about.jpg)
4444

45-
## Blockquotes
45+
## Citas en bloque
4646

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.
4848

49-
### Blockquote without attribution
49+
### Cita en bloque sin atribución
5050

51-
#### Syntax
51+
#### Sintaxis
5252

5353
```markdown
5454
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
5555
> **Note** that you can use _Markdown syntax_ within a blockquote.
5656
```
5757

58-
#### Output
58+
#### Salida
5959

6060
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
6161
> **Note** that you can use _Markdown syntax_ within a blockquote.
6262
63-
### Blockquote with attribution
63+
### Cita en bloque con atribución
6464

65-
#### Syntax
65+
#### Sintaxis
6666

6767
```markdown
6868
> Don't communicate by sharing memory, share memory by communicating.<br>
6969
> — <cite>Rob Pike[^1]</cite>
7070
```
7171

72-
#### Output
72+
#### Salida
7373

7474
> Don't communicate by sharing memory, share memory by communicating.<br>
7575
> — <cite>Rob Pike[^1]</cite>
7676
7777
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
7878

79-
## Tables
79+
## Tablas
8080

81-
### Syntax
81+
### Sintaxis
8282

8383
```markdown
8484
| Italics | Bold | Code |
8585
| --------- | -------- | ------ |
8686
| _italics_ | **bold** | `code` |
8787
```
8888

89-
### Output
89+
### Salida
9090

9191
| Italics | Bold | Code |
9292
| --------- | -------- | ------ |
9393
| _italics_ | **bold** | `code` |
9494

95-
## Code Blocks
95+
## Bloques de código
9696

97-
### Syntax
97+
### Sintaxis
9898

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
100100

101101
````markdown
102102
```html
@@ -113,7 +113,7 @@ we can use 3 backticks ``` in new line and write snippet and close with 3 backti
113113
```
114114
````
115115

116-
### Output
116+
### Salida
117117

118118
```html
119119
<!doctype html>
@@ -128,43 +128,43 @@ we can use 3 backticks ``` in new line and write snippet and close with 3 backti
128128
</html>
129129
```
130130

131-
## List Types
131+
## Tipos de listas
132132

133-
### Ordered List
133+
### Lista ordenada
134134

135-
#### Syntax
135+
#### Sintaxis
136136

137137
```markdown
138138
1. First item
139139
2. Second item
140140
3. Third item
141141
```
142142

143-
#### Output
143+
#### Salida
144144

145145
1. First item
146146
2. Second item
147147
3. Third item
148148

149-
### Unordered List
149+
### Lista desordenada
150150

151-
#### Syntax
151+
#### Sintaxis
152152

153153
```markdown
154154
- List item
155155
- Another item
156156
- And another item
157157
```
158158

159-
#### Output
159+
#### Salida
160160

161161
- List item
162162
- Another item
163163
- And another item
164164

165-
### Nested list
165+
### Lista anidada
166166

167-
#### Syntax
167+
#### Sintaxis
168168

169169
```markdown
170170
- Fruit
@@ -176,7 +176,7 @@ we can use 3 backticks ``` in new line and write snippet and close with 3 backti
176176
- Cheese
177177
```
178178

179-
#### Output
179+
#### Salida
180180

181181
- Fruit
182182
- Apple
@@ -186,9 +186,9 @@ we can use 3 backticks ``` in new line and write snippet and close with 3 backti
186186
- Milk
187187
- Cheese
188188

189-
## Other Elements — abbr, sub, sup, kbd, mark
189+
## Otros elementos: abbr, sub, sup, kbd, mark
190190

191-
### Syntax
191+
### Sintaxis
192192

193193
```markdown
194194
<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.
202202
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
203203
```
204204

205-
### Output
205+
### Salida
206206

207207
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
208208

docs/src/content/pages/notes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Notes - John Doe'
2+
title: 'Notes - Astro Vitesse'
33
display: ''
44
---
55

docs/src/content/pages/podcasts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Podcasts - John Doe'
2+
title: 'Podcasts - Astro Vitesse'
33
display: ''
44
items:
55
- title: 'Podcast test'

docs/src/content/pages/posts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Blog - John Doe
2+
title: Blog - Astro Vitesse
33
display: ''
44
---
55

docs/src/content/pages/projects.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Projects - John Doe
2+
title: Projects - Astro Vitesse
33
display: Projects
44
description: List of projects that I am proud of
55
wrapperClass: 'text-center'

docs/src/content/pages/sponsors-list.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Sponsors - John Doe
2+
title: Sponsors - Astro vitesse
33
display: Sponsors
44
subtitle: Great thanks for all the Sponsors!
55
description: Sponsors of John Doe

docs/src/content/pages/streams.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Streams - John Doe
2+
title: Streams - Astro Vitesse
33
display: ''
44
---
55

docs/src/content/pages/talks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Talks - John Doe
2+
title: Talks - Astro Vitesse
33
display: ''
44
---
55

0 commit comments

Comments
 (0)