expansions/cog_template.svg
- 512 bytes
- View raw
1<!--[[[cog
2 import cog
4 WIDTH = HEIGHT = 200
6 cog.outl(
7 f'<svg viewBox="0 0 {WIDTH} {HEIGHT}" '
8 f'width="{WIDTH}" '
9 'xmlns="http://www.w3.org/2000/svg" '
10 'xmlns:xlink="http://www.w3.org/1999/xlink">')
12 cog.outl(f'<rect width="{WIDTH}" height="{HEIGHT}" fill="yellow"/>')
13]]]-->
14<svg viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
15<rect width="200" height="200" fill="yellow"/>
16<!-- [[[end]]] (sum: 4i1/9ccOfz) -->
17</svg>