2024¶
I'm a code annotation! I can contain
code
, formatted text, images, ... basically anything that can be written in Markdown.
def bubble_sort(items):
for i in range(len(items)):
for j in range(len(items) - 1 - i):
if items[j] > items[j + 1]:
items[j], items[j + 1] = items[j + 1], items[j]
The range()
function is used to generate a sequence of numbers.
Tasklist
- item 1
- item B
- item a
- item B
- item b
- item c
- item 2
Ctrl+Alt+My Special Key
Cmd+Alt+Ü
https://facelessuser.github.io/pymdown-extensions/extensions/keys/
Here is some code: import pymdownx; pymdownx.__version__
.
1) Item 1 2) Item 2 i. Item 1 ii. Item 2 a. Item a b. Item b #. Item 1 #. Item 2
- Item 1
- Item 2
- Item 1
- Item 2
Summary
Here's some content.
Open styled details
Nested details!
And more content again.
¡Éxito!
Todo ha funcionado correctamente.
Atención
Esto podría causar un problema si no se configura bien.
Información
Aquí va información útil.
Method | Description |
---|---|
GET | Fetch resource |
PUT | Update resource |
DELETE | Delete resource |
graph TD
A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
pie title Which animals do you prefer as pets?
"Dogs" : 386
"Cats" : 85
"Rabbits" : 53
"Hamsters" : 101
graph LR
hello --> world
world --> again
again --> hello
graph TD
A[Client] --> B[Load Balancer]
B --> C[Server01]
B --> D[Server02]
sequenceDiagram
autonumber
Alice->>John: Hello John, how are you?
loop Healthcheck
John->>John: Fight against hypochondria
end
Note right of John: Rational thoughts!
John-->>Alice: Great!
John->>Bob: How about you?
Bob-->>John: Jolly good!
graph LR
A[Start] --> B{Error?};
B -->|Yes| C[Hmm...];
C --> D[Debug];
D --> B;
B ---->|No| E[Yay!];
WARNING - A reference to 'Windows/security.md' is included in the 'nav' configuration, which is not found in the documentation files. WARNING - A reference to 'problemas/windows.md' is included in the 'nav' configuration, which is not found in the documentation files. WARNING - A reference to 'problemas/linux.md' is included in the 'nav' configuration, which is not found in the documentation files. WARNING - A reference to 'problemas/codigo.md' is included in the 'nav' configuration, which is not found in the documentation files.
hola

Lorem ipsum dolor sit amet
-
Sed sagittis eleifend rutrum. Donec vitae suscipit est. Nullam tempus tellus non sem sollicitudin, quis rutrum leo facilisis.
Cras arcu libero
-
Aliquam metus eros, pretium sed nulla venenatis, faucibus auctor ex. Proin ut eros sed sapien ullamcorper consequat. Nunc ligula ante.
Duis mollis est eget nibh volutpat, fermentum aliquet dui mollis. Nam vulputate tincidunt fringilla. Nullam dignissim ultrices urna non auctor.
Add a video¶
The range()
function is used to generate a sequence of numbers.