Skip to content

Commit 4ffc423

Browse files
authored
Merge pull request #3 from z3ro0k/patch-1
Update configuration.md [Spanish]
2 parents cd3f8b7 + c6cd3bf commit 4ffc423

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

configuration.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ window.$docsify = {
4747
- Type: `Number`
4848
- Default: `6`
4949

50-
Maximum Table of content level.
50+
Máximo de tablas por nivel de contenido.
5151

5252
```js
5353
window.$docsify = {
@@ -60,14 +60,14 @@ window.$docsify = {
6060
- Type: `Boolean|String`
6161
- Default: `false`
6262

63-
Loads navbar from the Markdown file `_navbar.md` if **true**, or else from the path specified.
63+
Carga la barra de navegación desde el archivo Markdown `_navbar.md` si es **verdadero** o bien desde la ruta especificada.
6464

6565
```js
6666
window.$docsify = {
67-
// load from _navbar.md
67+
// carga desde _navbar.md
6868
loadNavbar: true,
6969

70-
// load from nav.md
70+
// carga desde nav.md
7171
loadNavbar: 'nav.md'
7272
};
7373
```
@@ -77,14 +77,14 @@ window.$docsify = {
7777
- Type: `Boolean|String`
7878
- Default: `false`
7979

80-
Loads sidebar from the Markdown file `_sidebar.md` if **true**, or else from the path specified.
80+
Carga la barra lateral desde el archivo Markdown `_sidebar.md` si es **verdadero** o bien desde la ruta especificada.
8181

8282
```js
8383
window.$docsify = {
84-
// load from _sidebar.md
84+
// carga desde _sidebar.md
8585
loadSidebar: true,
8686

87-
// load from summary.md
87+
// carga desde summary.md
8888
loadSidebar: 'summary.md'
8989
};
9090
```
@@ -94,7 +94,7 @@ window.$docsify = {
9494
- Type: `Number`
9595
- Default: `0`
9696

97-
Add table of contents (TOC) in custom sidebar.
97+
Agregar tabla de contenido (TOC) en la barra lateral personalizada.
9898

9999
```js
100100
window.$docsify = {
@@ -107,7 +107,7 @@ window.$docsify = {
107107
- Type: `Boolean`
108108
- Default: `false`
109109

110-
Scrolls to the top of the screen when the route is changed.
110+
Se desplaza a la parte superior de la pantalla cuando se cambia la ruta.
111111

112112
```js
113113
window.$docsify = {
@@ -120,14 +120,14 @@ window.$docsify = {
120120
- Type: `String`
121121
- Default: `README.md`
122122

123-
`README.md` in your docs folder will be treated as homepage for your website, but sometimes you may need to serve another file as your homepage.
123+
`README.md` en su carpeta de documentos se tratará como la página de inicio de su sitio web pero a veces puede que necesite publicar otro archivo como su página de inicio.
124124

125125
```js
126126
window.$docsify = {
127-
// Change to /home.md
127+
// Cambia a /home.md
128128
homepage: 'home.md',
129129

130-
// Or use the readme in your repo
130+
// O use el archivo README en su repositorio
131131
homepage:
132132
'https://raw.githubusercontent.com/tu-repo/docs/master/README.md'
133133
};
@@ -137,16 +137,16 @@ window.$docsify = {
137137

138138
- Type: `String`
139139

140-
Base path of the website. You can set it to another directory or another domain name.
140+
Ruta base del sitio web. Puede configurarlo en otro directorio u otro nombre del dominio.
141141

142142
```js
143143
window.$docsify = {
144144
basePath: '/path/',
145145

146-
// Load the files from another site
146+
// Carga los archivos de otro sitio
147147
basePath: 'https://docsify.js.org/',
148148

149-
// Even can load files from other repo
149+
// Incluso puede cargar archivos de otro repositorio
150150
basePath:
151151
'https://raw.githubusercontent.com/ryanmcdermott/clean-code-javascript/master/'
152152
};
@@ -157,19 +157,19 @@ window.$docsify = {
157157
- Type: `Boolean|String|String[]|Object`
158158
- Default: `false`
159159

160-
Activate the [cover feature](/es/cover.md). If true, it will load from `_coverpage.md`.
160+
Active la [cover feature](/es/cover.md). Si es verdadero, se cargará desde `_coverpage.md`
161161

162162
```js
163163
window.$docsify = {
164164
coverpage: true,
165165

166-
// Custom file name
166+
// Nombre del archivo personalizado
167167
coverpage: 'cover.md',
168168

169-
// mutiple covers
169+
// cubiertas múltiples
170170
coverpage: ['/', '/zh-cn/'],
171171

172-
// mutiple covers and custom file name
172+
// múltiples portadas y nombre de archivo personalizado
173173
coverpage: {
174174
'/': 'cover.md',
175175
'/zh-cn/': 'cover.md'

0 commit comments

Comments
 (0)