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
docs(contributing): Homogenize format & indent of code blocks
- Format using fenced style.
- Well indent in those placed inside list enumerations.
- Simulate `Good` - `Bad` monospace double colon indent inside each one.
- Examples highlighting as `text-plain`. The `md, markdown` style doesn't work very well since blocks has mixed syntax.
- `check_urls` code block highlighted as `properties` style (key-value pair).
Solves markdownlint rules:
- MD040/fenced-code-language: Fenced code blocks should have a language specified
- MD046/code-block-style: Code block style [Expected: indented; Actual: fenced]
- Man kann mehr als eine zu überprüfende Datei angeben, wobei die Einträge mit einem einzelnen Leerzeichen getrennt werden.
236
238
- Bei Angabe von mehr als einer Datei basiert das Ergebnis des Builds auf dem Ergebnis der letzten geprüften Datei. Du solltest Dir darüber im Klaren sein, dass dies zu gültigen Builds führen kann und daher das Build Protokoll am Ende des Pull Request durch Klick auf "Show all checks" -> "Details" genau geprüft werden sollte.
- Μπορείτε να προσδιορίσετε πάνω από ένα αρχείο για έλεγχο, χρησιμοποιώντας ένα κενό για να ξεχωρίσετε κάθε καταχώρηση.
251
253
- Αν προσδιορίσετε πάνω από ένα αρχείο, τα αποτελέσματα του build βασίζονται στα αποτελέσματα του τελευταίου αρχείου που ελέγχθηκε. Θα πρέπει να γνωρίζετε ότι ενδέχεται να πάρετε επικυρωμένα builds εξαιτίας αυτού οπότε να είστε σίγουροι ότι επιβλέπετε το αρχείο του build στο τέλος του pull request πατώντας στο "Show all checks" -> "Details".
Copy file name to clipboardExpand all lines: CONTRIBUTING-es.md
+43-41
Original file line number
Diff line number
Diff line change
@@ -79,69 +79,71 @@ La idea es tener:
79
79
80
80
Ejemplo:
81
81
82
-
[...]
83
-
* [Un libro increíble](http://example.com/example.html)
84
-
(línea en blanco)
85
-
(línea en blanco)
86
-
### Sección de ejemplo
87
-
(línea en blanco)
88
-
* [Otro libro fascinante](http://example.com/book.html)
89
-
* [Otro libro más](http://example.com/other.html)
82
+
```text
83
+
[...]
84
+
* [Un libro increíble](http://example.com/example.html)
85
+
(línea en blanco)
86
+
(línea en blanco)
87
+
### Sección de ejemplo
88
+
(línea en blanco)
89
+
* [Otro libro fascinante](http://example.com/book.html)
90
+
* [Otro libro más](http://example.com/other.html)
91
+
```
90
92
91
93
- Omita los espacios entre `]` y `(`:
92
94
93
-
```
94
-
INCORRECTO : * [Otro libro fascinante] (http://example.com/book.html)
95
-
CORRECTO : * [Otro libro fascinante](http://example.com/book.html)
96
-
```
95
+
```text
96
+
INCORRECTO: * [Otro libro fascinante] (http://example.com/book.html)
97
+
CORRECTO : * [Otro libro fascinante](http://example.com/book.html)
98
+
```
97
99
98
100
- Si en el registro decide incluir al autor, emplee ` - ` (un guión rodeado de espacios simples) como separador:
99
101
100
-
```
101
-
INCORRECTO : * [Un libro sencillamente fabuloso](http://example.com/book.html)- John Doe
102
-
CORRECTO : * [Un libro sencillamente fabuloso](http://example.com/book.html) - John Doe
103
-
```
102
+
```text
103
+
INCORRECTO: * [Un libro sencillamente fabuloso](http://example.com/book.html)- John Doe
104
+
CORRECTO : * [Un libro sencillamente fabuloso](http://example.com/book.html) - John Doe
105
+
```
104
106
105
107
- Ponga un solo espacio entre el enlace al contenido y su formato:
106
108
107
-
```
108
-
INCORRECTO : * [Un libro muy interesante](https://example.org/book.pdf)(PDF)
109
-
CORRECTO : * [Un libro muy interesante](https://example.org/book.pdf) (PDF)
110
-
```
109
+
```text
110
+
INCORRECTO: * [Un libro muy interesante](https://example.org/book.pdf)(PDF)
111
+
CORRECTO : * [Un libro muy interesante](https://example.org/book.pdf) (PDF)
112
+
```
111
113
112
114
- El autor se antepone al formato:
113
115
114
-
```
115
-
INCORRECTO : * [Un libro muy interesante](https://example.org/book.pdf)- (PDF) Jane Roe
116
-
CORRECTO : * [Un libro muy interesante](https://example.org/book.pdf) - Jane Roe (PDF)
117
-
```
116
+
```text
117
+
INCORRECTO: * [Un libro muy interesante](https://example.org/book.pdf)- (PDF) Jane Roe
118
+
CORRECTO : * [Un libro muy interesante](https://example.org/book.pdf) - Jane Roe (PDF)
119
+
```
118
120
119
121
- Múltiples formatos:
120
122
121
-
```
122
-
INCORRECTO : * [Otro libro interesante](http://example.com/) - John Doe (HTML)
123
-
INCORRECTO : * [Otro libro interesante](https://downloads.example.org/book.html) - John Doe (sitio de descarga)
124
-
CORRECTO : * [Otro libro interesante](http://example.com/) - John Doe (HTML) [(PDF, EPUB)](https://downloads.example.org/book.html)
125
-
```
123
+
```text
124
+
INCORRECTO: * [Otro libro interesante](http://example.com/) - John Doe (HTML)
125
+
INCORRECTO: * [Otro libro interesante](https://downloads.example.org/book.html) - John Doe (sitio de descarga)
126
+
CORRECTO : * [Otro libro interesante](http://example.com/) - John Doe (HTML) [(PDF, EPUB)](https://downloads.example.org/book.html)
127
+
```
126
128
127
129
- Incluya el año de publicación como parte del título de los libros más antiguos:
128
130
129
-
```
130
-
INCORRECTO : * [Un libro bastante especial](https://example.org/book.html) - Jane Roe - 1970
131
-
CORRECTO : * [Un libro bastante especial (1970)](https://example.org/book.html) - Jane Roe
132
-
```
131
+
```text
132
+
INCORRECTO: * [Un libro bastante especial](https://example.org/book.html) - Jane Roe - 1970
133
+
CORRECTO : * [Un libro bastante especial (1970)](https://example.org/book.html) - Jane Roe
134
+
```
133
135
134
136
- <a name="in_process"></a>Libros en proceso / no acabados aún:
135
137
136
-
```
137
-
CORRECTO: * [A punto de ser un libro fascinante](http://example.com/book2.html) - John Doe (HTML) (:construction: *en proceso*)
138
-
```
138
+
```text
139
+
CORRECTO: * [A punto de ser un libro fascinante](http://example.com/book2.html) - John Doe (HTML) (:construction: *en proceso*)
140
+
```
139
141
140
142
- <a name="archived"></a>Enlaces archivados:
141
143
142
-
```
143
-
CORRECTO: * [Un recurso recuperado a partir de su línea de tiempo](https://web.archive.org/web/20211016123456/http://example.com/) - John Doe (HTML) *(:card_file_box: archivado)*
144
-
```
144
+
```text
145
+
CORRECTO: * [Un recurso recuperado a partir de su línea de tiempo](https://web.archive.org/web/20211016123456/http://example.com/) - John Doe (HTML) *(:card_file_box: archivado)*
146
+
```
145
147
146
148
147
149
<a name="notes"></a>
@@ -252,8 +254,8 @@ Si es posible imprimirlo y conservar su esencia, no es un Tutorial Interactivo.
252
254
- La validación de URLs se realiza mediante [awesome_bot](https://github.com/dkhamsing/awesome_bot)
253
255
- Para activar esta validación de URL, envíe un commit que incluya como mensaje de confirmación `check_urls=fichero_a_comprobar`:
0 commit comments