UF01-1842. Quarto Markdown: basics

Quarto Markdown: basics

Aquí es llisten exemples de diversos casos pràctics de markdown (Quarto utilitza markdown per formatajar la web a html). Aquesta pàgina web correspon al segon laboratori de Markdown. Aquí teniu la url de l’enunciat:

Here you have a list of some practical markdown examples (Quarto uses markdown for formating the webpage to html). This webpage responds to the second Markdown lab. Here is the URL for the assignment:

UF01-1842. Quarto Markdown: basics

Exercice: Markdown Syntax

Markdown basics

Ejemplos
this text is in italics
this text is in bold
the power of2
crossed text with 2 ‘virgulillas’ at the beginning and the end
this is for code

Figures

Figure 1: Random cat image

Tables

Default Left Right Center
12 12 12 12
123 123 123 123
1 1 1 1

Mermaid Diagrams

classDiagram
    class Context {
        -state;
        + Contect(initialState)
        + changeState(state)
        + doThis()
        + doThat()
    }

    class Pacient {
        -habitacio: Habitacio;
        -simptomes: Simptomes;
        -malaltia: Malaltia;
        -estat: Estat;
        +canviarEstat(Estat newEstat) boolean
        +afegirSimptoma(Simptoma) boolean
        +eliminarSimptoma(Simptoma) boolean
        +donarMedicacio(Medicació medicacio) boolean
    }

    class Treballador {
        -especialitat: Especialitat;
        -horari: String;
    }

    class Especialitat {
        -id: int;
        -nom: String;
        -treballador: ArrayList~Treballador~;
    }
    class Simptoma {
        -id: int;
        -nom: String;
    }

    class Medicació {
        -id: int;
        -quantitat: int;
        - nom: String;
    }

    class Habitació {
        -id: int;
        -capacitat: int;
        -panta: int;
    }
    Persona <|-- Pacient
    Persona <|-- Treballador
    Especialitat o-- Treballador
    Treballador -- Pacient : visita
    Pacient o-- Simptoma
    Pacient o-- Medicació
    Pacient o-- Habitació

Callout

Note
This callout is a note-callout, it gives extra information to the user.
Important
        - markup/UF01-1843.qmd
This callout is a important-callout, it gives important information to the user.

Cross-references

This is a cross-reference Figure 1

Title blocks

You can see it on the top of the page.

Article Layout

Random cat image