forked from tldr-pages/tldr
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
d2: add Spanish translation (tldr-pages#12742)
* d2: add Spanish translation --------- Co-authored-by: Alejandro Cervera <[email protected]> Co-authored-by: Sebastiaan Speck <[email protected]>
- Loading branch information
1 parent
bdf2655
commit dda5724
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# d2 | ||
|
||
> Un lenguaje moderno de scripting de diagramas que convierte texto en diagramas. | ||
> Nota: el archivo de salida admite formatos de archivo SVG y PNG. | ||
> Más información: <https://d2lang.com/tour/man>. | ||
- Compila y renderiza un archivo fuente D2 en un archivo de salida: | ||
|
||
`d2 {{ruta/al/archivo_de_entrada.d2}} {{ruta/al/archivo_de_salida.ext}}` | ||
|
||
- Ve en directo los cambios realizados en un archivo fuente D2 en el navegador web predeterminado: | ||
|
||
`d2 --watch {{ruta/al/archivo_de_entrada.d2}} {{ruta/al/archivo_de_salida.ext}}` | ||
|
||
- Formatea un archivo fuente D2: | ||
|
||
`d2 fmt {{ruta/al/archivo_de_entrada.d2}}` | ||
|
||
- Lista los temas disponibles: | ||
|
||
`d2 themes` | ||
|
||
- Usa un [t]ema diferente para el archivo de salida (primero enumera los temas disponibles para obtener el `theme_id` deseado): | ||
|
||
`d2 --theme {{identificador_tema}} {{ruta/al/archivo_de_entrada.d2}} {{ruta/al/archivo_de_salida.ext}}` | ||
|
||
- Haz que los diagramas renderizados parezcan bocetos hechos a mano: | ||
|
||
`d2 --sketch true {{ruta/al/archivo_de_entrada.d2}} {{ruta/al/archivo_de_salida.ext}}` |