LinkORB Engineering
This site and the LinkORB internal wiki use Mermaid.js and PlantUML to render diagrams.
Add a diagram to a Markdown page on this site (engineering.linkorb.com) or the LinkORB internal wiki using Mermaid.js syntax as follows:
mermaid
after the opening set of three back ticks.Below is a full Mermaid.js example.
```mermaid
erDiagram
CAR ||--o{ NAMED-DRIVER : allows
CAR {
string registrationNumber
string make
string model
}
PERSON ||--o{ NAMED-DRIVER : is
PERSON {
string firstName
string lastName
int age
}
```
To use PlantUML syntax in Markdown files on engineering.linkorb.com:
<pre>
tag and set its class attribute to language-pantuml
(i.e. <pre class="language-plantuml"></pre>
).<pre>
tags, wrap the diagram’s code in a Markdown code block, that is, three backticks (also known as a backquote) as shown below.Below is a full PlantUML example.
<pre class="language-plantuml">
```
@startwbs
* Business Process Modelling WBS
** Launch the project
*** Complete Stakeholder Research
*** Initial Implementation Plan
@endwbs
```
</pre>
@startwbs * Business Process Modelling WBS ** Launch the project *** Complete Stakeholder Research *** Initial Implementation Plan @endwbs
When using PlantUML syntax on the LinkORB internal wiki, you DO NOT need to wrap the diagram’s code in <pre>
tags. Simply wrap the diagram in a Markdown code block (three backticks (also known as a backquote)) and specify plantuml
as the language as shown below. Place the word plantuml
immediately after the first set of three backticks.
Below is a full PlantUML example.
```plantuml
@startwbs
* Business Process Modelling WBS
** Launch the project
*** Complete Stakeholder Research
*** Initial Implementation Plan
@endwbs
```
@startwbs * Business Process Modelling WBS ** Launch the project *** Complete Stakeholder Research *** Initial Implementation Plan @endwbs
Live online editors for each of the above solutions can be found below, which may help assist technical writers to learn and leverage them in their work.
#markdown
)