2022-02-10 20:32:21 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
2022-09-05 00:48:36 +05:30
|
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
|
2022-02-10 20:32:21 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>User Journey</h1>
|
2022-09-05 00:48:36 +05:30
|
|
|
<pre class="mermaid">
|
2022-02-10 20:32:21 +01:00
|
|
|
journey
|
|
|
|
title Go shopping
|
|
|
|
|
|
|
|
section Get to the shops
|
|
|
|
Get car keys:5: Dad
|
|
|
|
Get into car:5: Dad, Mum, Child 1, Child 2
|
|
|
|
Really drive to supermarket:3: Dad
|
|
|
|
|
|
|
|
section Do shopping
|
|
|
|
Do actual shop:3: Mum
|
|
|
|
Get in the way:2: Dad, Child 1, Child 2
|
|
|
|
Pay: 2: Dad
|
|
|
|
|
|
|
|
section Go home
|
|
|
|
Lose keys:3: Dad
|
|
|
|
Get cross:1: Dad, Child 1
|
|
|
|
Find keys:4: Mum
|
|
|
|
Get into car:4: Dad, Mum, Child 1, Child 2
|
|
|
|
Drive home:3: Dad
|
2022-09-05 00:48:36 +05:30
|
|
|
</pre>
|
2023-02-19 14:03:11 +05:30
|
|
|
<script type="module">
|
|
|
|
import mermaid from './mermaid.esm.mjs';
|
2022-02-10 20:32:21 +01:00
|
|
|
mermaid.initialize({
|
|
|
|
theme: 'forest',
|
|
|
|
logLevel: 3,
|
|
|
|
journey: { taskMargin: 30 },
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|