Programmatically generate SVG (vector) images, animations, and interactive Jupyter widgets
1<?xml version="1.0" encoding="UTF-8"?> 2<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" 3 width="110" height="40" viewBox="0 0 110 40"> 4<defs> 5</defs> 6<path d="M10,10 L100,10" stroke="black" stroke-width="2" stroke-dasharray="9,5" /> 7<path d="M10,20 L100,20" stroke="black" stroke-width="2" stroke-dasharray="5,3,9,2" /> 8<path d="M10,30 L100,30" stroke="black" stroke-width="2" stroke-dasharray="9,3,5" /> 9</svg>