Hacker News new | ask | show | jobs
by JayPalm 1269 days ago
It cannot. This is its result: ```svg Copy code <svg width="100" height="100"> <defs> <pattern id="rope-texture" patternUnits="userSpaceOnUse" width="10" height="10"> <rect x="0" y="0" width="5" height="10" fill="#333" /> <circle cx="7.5" cy="5" r="2.5" fill="#333" /> </pattern> </defs> <path d="M20,50 C20,30 50,30 50,50 C50,70 20,70 20,50" fill="url(#rope-texture)" /> </svg> ```