Chapter 3 — CSV Advanced Basics
Paths allow drawing complex shapes using commands like M (move) and L (line).
Example:
<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg">
<path d="M10 10 L100 100" stroke="black" fill="none"/>
</svg>