image::embed:SystemLandscape[System Landscape Diagram]
This page showcases the ability to use AsciiDoc formating features in workspace documentation files. The full list of AsciiDoc features is documented in the Asciidoctor Syntax Reference.
Diagrams can be embedded using the embed:
syntax:
image::embed:SystemLandscape[System Landscape Diagram]
When, for example, you would like to embed a nice picture which is located in the pictures
directory under the assets directory, you can do that as follows:
image::/pictures/nice-picture.png[A nice picture]
Sun, by Christian Scheja
[plantuml]
----
@startuml
Foo -> Bar: doSomething()
@enduml
----
[plantuml]
----
@startuml
class Foo {
+property: String
+foo()
}
class Bar {
-privateProperty: String
+bar()
}
Foo ..> Bar: Uses
@enduml
----
[source, mermaid]
----
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
----
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
[source, 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!
----
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!
|===
|Column 1, Header Row |Column 2, Header Row
|Cell in column 1, row 1
|Cell in column 2, row 1
|Cell in column 1, row 2
|Cell in column 2, row 2
|===
This will be rendered as
Column 1, Header Row | Column 2, Header Row |
---|---|
Cell in column 1, row 1 |
Cell in column 2, row 1 |
Cell in column 1, row 2 |
Cell in column 2, row 2 |
Admonitions create block-styled side content.
Note
|
This is a note. |
π‘Tip
|
Info
Go to this URL to learn more about it:
|
Important
|
One more thing. Happy documenting! |
Quote or excerpt text
* [*] checked
* [x] also checked
* [ ] not checked
* normal list item
will be rendered as:
β checked
β also checked
β not checked
normal list item