Skip to content

RustLangES/RustLangES.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image

GitHub Workflow Status (with event) GitHub Workflow Status (with event)

Requisitos

antes de empezar tienes que instalar estos programas

Desarrollo

Note

necesitas fetch git submodules para clonar los assets externos para el desarrollo

git submodule update --init --recursive

Now you can run:

trunk serve
   npm install 
   ```
## Configura tu VSCode
Agrega esto en tu `settings.json`

```json
{
 "emmet.includeLanguages": {
   "rust": "html",
   "*.rs": "html"
 },
 "tailwindCSS.includeLanguages": {
     "rust": "html",
     "*.rs": "html"
 },
 "files.associations": {
     "*.rs": "rust"
 },
 "editor.quickSuggestions": {
   "other": "on",
   "comments": "on",
   "strings": true
 },
 "css.validate": false
}