| 1 | <!doctype html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <meta charset="utf-8" /> |
| 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
| 6 | <title>Mermaid Quick Test Page</title> |
| 7 | <link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo=" /> |
| 8 | <style> |
| 9 | div.mermaid { |
| 10 | /* font-family: 'trebuchet ms', verdana, arial; */ |
| 11 | font-family: 'Courier New', Courier, monospace !important; |
| 12 | } |
| 13 | </style> |
| 14 | </head> |
| 15 | |
| 16 | <body> |
| 17 | <pre class="mermaid"> |
| 18 | timeline |
| 19 | title My day |
| 20 | section Go to work |
| 21 | 1930 : first step : second step |
| 22 | : third step |
| 23 | 1940 : fourth step : fifth step |
| 24 | </pre> |
| 25 | |
| 26 | <h2>Medical Device Lifecycle Timeline</h2> |
| 27 | <pre class="mermaid"> |
| 28 | timeline |
| 29 | title Medical Device Lifecycle |
| 30 | section Planning |
| 31 | Quality Management System (4) : Regulatory Compliance (4.1) : Risk Management (4.1.3) : Management Review (5.6) : Infrastructure (6.3) |
| 32 | Management Responsibility (5) : Planning Activities (5.2) : Human Resources (6.2) : RnD Planning (7.3.2) : Purchasing Process (7.4.1) : Production Activities (7.5.1) : Installation Activities (7.5.3) : Servicing Activities (7.5.4) |
| 33 | section Realization |
| 34 | Research and Development (7.3) : Inputs (7.3.3) : Outputs (7.3.4) : Review (7.3.5) : Verification (7.3.6) : Validation (7.3.7) |
| 35 | Purchasing (7.4) : Purchasing Information (7.4.2) : Production Feedback (8.2.1) |
| 36 | Production (7.5) : Production Feedback (8.2.1) |
| 37 | Installation (7.5.3) : Installation Activities (7.5.3) |
| 38 | Servicing (7.5.4) : Servicing Activities (7.5.4) |
| 39 | section Post-Production |
| 40 | Post-Market Activities (8) : Feedback (8.2.1) : Complaints (8.2.2) : Adverse Events (8.2.3) |
| 41 | </pre> |
| 42 | |
| 43 | <script type="module"> |
| 44 | import mermaid from './mermaid.esm.mjs'; |
| 45 | mermaid.initialize({ |
| 46 | theme: 'forest', |
| 47 | logLevel: 1, |
| 48 | securityLevel: 'loose', |
| 49 | flowchart: { curve: 'basis' }, |
| 50 | gantt: { axisFormat: '%m/%d/%Y' }, |
| 51 | sequence: { actorMargin: 50 }, |
| 52 | }); |
| 53 | </script> |
| 54 | </body> |
| 55 | </html> |
| 56 | |