Example Guide
Guides lead a user through a specific task they want to accomplish, often with a sequence of steps. Writing a good guide requires thinking about what your users are trying to do.
Text can be bold, italic, or strikethrough.
Error generating PlantUML diagram: connect ECONNREFUSED 127.0.0.1:8080
@startumlparticipant "Service A" as Aparticipant "Message Queue" as MQparticipant "Service B" as B
A -> MQ: Publish eventnote right: Async messageMQ -> MQ: Store messageMQ --> A: Acknowledged
... 5 minutes later ...
B -> MQ: Poll for messagesMQ --> B: Deliver eventB -> B: Process eventB -> MQ: Acknowledge@endumlSystem.out.println();Class Diagram Example
Section titled “Class Diagram Example”Error generating PlantUML diagram: connect ECONNREFUSED 127.0.0.1:8080
@startuml
skinparam classBorderThickness 3skinparam ArrowThickness 1skinparam defaultFontSize 16skinparam classAttributeFontSize 18skinparam classFontSize 16
class Vehicle { - vehicleId: String - brand: String - model: String - year: int + start(): void + stop(): void + getDetails(): String}
class Car { - numberOfDoors: int - fuelType: String + openTrunk(): void}
class Motorcycle { - hasCarrier: boolean + wheelie(): void}
abstract class Engine { # horsepower: int # type: String + start(): void + stop(): void}
class ElectricEngine { - batteryCapacity: int + charge(): void}
class CombustionEngine { - fuelCapacity: double + refuel(): void}
Vehicle <|-- CarVehicle <|-- MotorcycleVehicle *-- EngineEngine <|-- ElectricEngineEngine <|-- CombustionEngine
@endumlText can be **bold**, _italic_, or ~~strikethrough~~.Further reading
Section titled “Further reading”- Read about how-to guides in the Diátaxis framework
https://github.com/antfu