Markdown Syntax
OneDev supports GitHub flavored markdown, with some additions:
-
Chart with Mermaid, for instance:
```mermaidsequenceDiagramparticipant Aliceparticipant BobAlice->>John: Hello John, how are you?loop HealthcheckJohn->>John: Fight against hypochondriaendNote right of John: Rational thoughts prevail!John-->>Alice: Great!John->>Bob: How about you?Bob-->>John: Jolly good!``` -
Diagrams with PlantUML, for instance:
```plantuml@startumlAlice -> Bob: Authentication RequestBob --> Alice: Authentication ResponseAlice -> Bob: Another authentication RequestAlice <-- Bob: Another authentication Response@enduml``` -
Math equations with Katex, for instance:
```math\def \x {\mathbf{x}}\def \w {\omega}\def \d {\operatorname{d}\!}P(\x,\w) = \oint_{\partial V} D(\x_0,\w) G(\x-\x_0,\w) \d A(\x_0)```