mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
[pug/*] remove headers
This commit is contained in:
parent
733ae8fc3f
commit
ff34febd6a
@ -8,15 +8,11 @@ translators:
|
|||||||
lang: de-de
|
lang: de-de
|
||||||
---
|
---
|
||||||
|
|
||||||
## Erste Schritte mit Pug
|
|
||||||
|
|
||||||
Pug ist eine kleine Sprache, die zu HTML kompiliert. Sie hat eine
|
Pug ist eine kleine Sprache, die zu HTML kompiliert. Sie hat eine
|
||||||
saubere Syntax mit zusätzlichen Funktionen wie if Anweisungen und Schleifen.
|
saubere Syntax mit zusätzlichen Funktionen wie if Anweisungen und Schleifen.
|
||||||
Sie kann auch als serverseitige Templatingsprache für Serversprachen
|
Sie kann auch als serverseitige Templatingsprache für Serversprachen
|
||||||
wie NodeJS verwendet werden.
|
wie NodeJS verwendet werden.
|
||||||
|
|
||||||
### Die Sprache
|
|
||||||
|
|
||||||
```pug
|
```pug
|
||||||
//- Einzeilenkommentar
|
//- Einzeilenkommentar
|
||||||
|
|
||||||
@ -200,8 +196,8 @@ mixin comment(name, kommentar)
|
|||||||
//- <div>Hallo</div>
|
//- <div>Hallo</div>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
### Zusätzliche Ressourcen
|
### Zusätzliche Ressourcen
|
||||||
|
|
||||||
- [The Site](https://pugjs.org/)
|
- [The Site](https://pugjs.org/)
|
||||||
- [The Docs](https://pugjs.org/api/getting-started.html)
|
- [The Docs](https://pugjs.org/api/getting-started.html)
|
||||||
- [GitHub Repo](https://github.com/pugjs/pug)
|
- [GitHub Repo](https://github.com/pugjs/pug)
|
||||||
|
@ -8,14 +8,10 @@ translators:
|
|||||||
lang: pt-br
|
lang: pt-br
|
||||||
---
|
---
|
||||||
|
|
||||||
## Começando com Pug
|
Pug é uma pequena linguagem que compila para HTML. Possui uma sintaxe limpa
|
||||||
|
com algumas funcionalidades adicionais, como declarações if e loops. Também pode ser utilizada
|
||||||
Pug é uma pequena linguagem que compila para HTML. Possui uma sintaxe limpa
|
|
||||||
com algumas funcionalidades adicionais, como declarações if e loops. Também pode ser utilizada
|
|
||||||
como uma linguagem de templates no lado do servidor para tecnologias como o Node.js.
|
como uma linguagem de templates no lado do servidor para tecnologias como o Node.js.
|
||||||
|
|
||||||
### The Language
|
|
||||||
|
|
||||||
```pug
|
```pug
|
||||||
//- Comentário de uma linha
|
//- Comentário de uma linha
|
||||||
|
|
||||||
@ -128,7 +124,7 @@ each value, index in [1,2,3]
|
|||||||
|
|
||||||
each value in []
|
each value in []
|
||||||
p=value
|
p=value
|
||||||
//-
|
//-
|
||||||
|
|
||||||
each value in []
|
each value in []
|
||||||
p=value
|
p=value
|
||||||
@ -196,15 +192,15 @@ mixin comment(nome, comentario)
|
|||||||
span.comment-name= nome
|
span.comment-name= nome
|
||||||
div.comment-text= comentario
|
div.comment-text= comentario
|
||||||
+comment("Gil", "Tudo é divino, tudo é maravilhoso")
|
+comment("Gil", "Tudo é divino, tudo é maravilhoso")
|
||||||
//-
|
//-
|
||||||
<div>
|
<div>
|
||||||
<span class="comment-name">Gil</span>
|
<span class="comment-name">Gil</span>
|
||||||
<div class="comment-text">Tudo é divino, tudo é maravilhoso</div>
|
<div class="comment-text">Tudo é divino, tudo é maravilhoso</div>
|
||||||
</div>
|
</div>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
### Saiba Mais
|
### Saiba Mais
|
||||||
|
|
||||||
- [Site Oficial](https://pugjs.org/)
|
- [Site Oficial](https://pugjs.org/)
|
||||||
- [Documentação](https://pugjs.org/api/getting-started.html)
|
- [Documentação](https://pugjs.org/api/getting-started.html)
|
||||||
- [Repositório no GitHub](https://github.com/pugjs/pug)
|
- [Repositório no GitHub](https://github.com/pugjs/pug)
|
||||||
|
@ -5,13 +5,9 @@ contributors:
|
|||||||
filename: index.pug
|
filename: index.pug
|
||||||
---
|
---
|
||||||
|
|
||||||
## Getting Started with Pug
|
Pug is a language that compiles to HTML. It has a cleaner syntax
|
||||||
|
with additional features like if statements and loops. It can also be used
|
||||||
Pug is a little language that compiles into the HTML. It has cleaner syntax
|
as a server-side templating language for server languages like Node.js.
|
||||||
with additional features like if statements and loops. It can also be used
|
|
||||||
as a server side templating language for server languages like NodeJS.
|
|
||||||
|
|
||||||
### The Language
|
|
||||||
|
|
||||||
```pug
|
```pug
|
||||||
//- Single Line Comment
|
//- Single Line Comment
|
||||||
@ -125,7 +121,7 @@ each value, index in [1,2,3]
|
|||||||
|
|
||||||
each value in []
|
each value in []
|
||||||
p=value
|
p=value
|
||||||
//-
|
//-
|
||||||
|
|
||||||
each value in []
|
each value in []
|
||||||
p=value
|
p=value
|
||||||
@ -193,15 +189,15 @@ mixin comment(name, comment)
|
|||||||
span.comment-name= name
|
span.comment-name= name
|
||||||
div.comment-text= comment
|
div.comment-text= comment
|
||||||
+comment("Bob", "This is Awesome")
|
+comment("Bob", "This is Awesome")
|
||||||
//-
|
//-
|
||||||
<div>
|
<div>
|
||||||
<span class="comment-name">Bob</span>
|
<span class="comment-name">Bob</span>
|
||||||
<div class="comment-text">This is Awesome</div>
|
<div class="comment-text">This is Awesome</div>
|
||||||
</div>
|
</div>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
### Additional Resources
|
### Additional Resources
|
||||||
- [The Site](https://pugjs.org/)
|
|
||||||
- [The Docs](https://pugjs.org/api/getting-started.html)
|
- [The site](https://pugjs.org/)
|
||||||
- [GitHub Repo](https://github.com/pugjs/pug)
|
- [The docs](https://pugjs.org/api/getting-started.html)
|
||||||
|
- [GitHub repo](https://github.com/pugjs/pug)
|
||||||
|
Loading…
Reference in New Issue
Block a user