Home

Índice

Notas

Mi nota de ejemplo

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa.

Expandible

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa.

Mermaid
sequenceDiagram participant Alice participant Bob Alice->>John: Hello John, how are you? loop Healthcheck John->>John: Fight against hypochondria end Note right of John: Rational thoughts <br/>prevail! John-->>Alice: Great! John->>Bob: How about you? Bob-->>John: Jolly good!
journey title My working day section Go to work Make tea: 5: Me Go upstairs: 3: Me Do work: 1: Me, Cat section Go home Go downstairs: 5: Me Sit down: 5: Me

Los siguientes diagramas no se ven bien dentro de las notas

graph TD; A-->B; A-->C; B-->D; C-->D;

Gantt

gantt dateFormat YYYY-MM-DD title Adding GANTT diagram to mermaid excludes weekdays 2014-01-10 section A section Completed task :done, des1, 2014-01-06,2014-01-08 Active task :active, des2, 2014-01-09, 3d Future task : des3, after des2, 5d Future task2 : des4, after des3, 5d

Diagrama de clases

classDiagram Class01 <|-- AveryLongClass : Cool Class03 *-- Class04 Class05 o-- Class06 Class07 .. Class08 Class09 --> C2 : Where am i? Class09 --* C3 Class09 --|> Class07 Class07 : equals() Class07 : Object[] elementData Class01 : size() Class01 : int chimp Class01 : int gorilla Class08 <--> C2: Cool label

Git

gitGraph: options { "nodeSpacing": 150, "nodeRadius": 10 } end commit branch newbranch checkout newbranch commit commit checkout master commit commit merge newbranch

Entidad/Relación

erDiagram CUSTOMER ||--o{ ORDER : places ORDER ||--|{ LINE-ITEM : contains CUSTOMER }|..|{ DELIVERY-ADDRESS : uses
Tablas

Con Multimarkdown se pueden conseguir varios tipos de tablas. Buscando cómo hacerlo en mkdocs

Row and columns merge, with multiple tbody:

| | Grouping || Grouping 2 || Not Grouped | | First Header | Second Header | Third Header | Forth Header | Fifth Header | Sixth Header | | ------------- | :-----------: | -------------: | :----------: | :----------: | --------------- | | Tall Cell | Long Cell || Long Long Cell ||| | ^^ | Bold | 1. first item | Italic | 3. third item | + first point |\ | ^^ | | 1. second item | | 1. forth item | + second point |

| New section | More | Data | … - – — ||| | And more | With an escaped | || “Try ‘quotes’ in quotes ” ||| [Compicated table]

Debería verse así:

None

Multiline

Backslash at end merges with line content below.

Markdown Rendered HTML
Italic Italic
- Item 1 - Item 1
- Item 2 - Item 2
python |python \
.1 + .2 .1 + .2 \
|

Se debería ver así:

None

** Rowspan (optional)**

^^ indicates cells being merged above.

Stage Direct Products ATP Yields
Glycolysis 2 ATP
^^ 2 NADH 3–5 ATP
Pyruvaye oxidation 2 NADH 5 ATP
Citric acid cycle 2 ATP
^^ 6 NADH 15 ATP
^^ 2 FADH2 3 ATP
30–32 ATP
[Net ATP yields per hexose]

Se debería ver:

None

Headerless

Table header can be eliminated.

|–|–|–|–|–|–|–|–| |♜| |♝|♛|♚|♝|♞|♜| | |♟|♟|♟| |♟|♟|♟| |♟| |♞| | | | | | | |♗| | |♟| | | | | | | | |♙| | | | | | | | | |♘| | | |♙|♙|♙|♙| |♙|♙|♙| |♖|♘|♗|♕|♔| | |♖|

Con lo que se tendría algo como:

None

Exportando a pdf

Voy a probar exportaciones a pdf con https://pypi.org/project/mkdocs-with-pdf/. No me gusta, tengo que conseguir hacerlo con pandoc, que para eso es.


Última actualización: July 6, 2023