Markdown
Definition Lists
- First Term
- This is the definition of the first term.
- Second Term
- This is one definition of the second term.
- This is another definition of the second term.
Admonitions
A note
Stay hydrated~
A tip
Stay hydrated~
A info
Stay hydrated~
A warning
Stay hydrated~
A danger
Stay hydrated~
Aside
Syntax highlighting
1 2 3 4 5
Wide container
Taxonomies
[]
= ["components", "boards", "chips", "sensors"]
Spoiler
Did you know that Snape ?
Footnotes
Here's a simple footnote,1 and here's a longer one.2
LaTeX expressions
$ \sin(x) = \sum_{n=0}^{\infty} \frac{(-1)^n}{(2n + 1)!} x^{2n + 1} $
\[ r = \frac{\sum_{i=1}^{n}(x_i - \bar{x})(y_i - \bar{y})}{\sqrt{\sum_{i=1}^{n}(x_i - \bar{x})^2}\sqrt{\sum_{i=1}^{n}(y_i - \bar{y})^2}} \]
Enable in your frontmatter:
[]
= true
Mermaid diagrams
classDiagram
class CognitiveDistortions {
+AllOrNothingThinking()
+Overgeneralization()
+MentalFilter()
+JumpingToConclusions()
}
class AllOrNothingThinking {
+SeeInExtremes()
}
class Overgeneralization {
+GeneralizeFromSingle()
}
class MentalFilter {
+FocusOnNegative()
}
class JumpingToConclusions {
+MakeAssumptions()
}
CognitiveDistortions *-- AllOrNothingThinking
CognitiveDistortions *-- Overgeneralization
CognitiveDistortions *-- MentalFilter
CognitiveDistortions *-- JumpingToConclusions