In the following, you find a systematic language overview. The entrance to the available online information can be found on [Github] ( https://github.com/Pugjs/Pug ).
Doctype
The typical HTML 5 Doctype is written as follows:
1 doctype html
The produced HTML then looks as follows:
1 <!DOCTYPE html>
Short Spellings
Because of the frequent use of Doctypes there are a few short spellings .
1 doctype html
The produced HTML then looks as follows:
1 <!DOCTYPE html>
1 doctype xml
The produced HTML then looks as follows:
1 <?xml version="1.0" encoding="utf-8" ?>
1 doctype transitional ...