This file is indexed.

/usr/share/doc/libghc-svg-builder-doc/html/svg-builder.txt is in libghc-svg-builder-doc 0.1.0.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | DSL for building SVG.
--   
--   Fast, easy to write SVG.
@package svg-builder
@version 0.1.0.2


-- | Utility functions to help create SVG path attributes, and transforms.
module Graphics.Svg.Path

-- | Convert a number to Text.
toText :: RealFloat a => a -> Text

-- | moveto (absolute)
mA :: RealFloat a => a -> a -> Text

-- | moveto (relative)
mR :: RealFloat a => a -> a -> Text

-- | lineto (absolute)
lA :: RealFloat a => a -> a -> Text

-- | lineto (relative)
lR :: RealFloat a => a -> a -> Text

-- | horizontal lineto (absolute)
hA :: RealFloat a => a -> Text

-- | horizontal lineto (relative)
hR :: RealFloat a => a -> Text

-- | vertical lineto (absolute)
vA :: RealFloat a => a -> Text

-- | vertical lineto (relative)
vR :: RealFloat a => a -> Text

-- | Cubic Bezier curve (absolute)
cA :: RealFloat a => a -> a -> a -> a -> a -> a -> Text

-- | Cubic Bezier curve (relative)
cR :: RealFloat a => a -> a -> a -> a -> a -> a -> Text

-- | Smooth Cubic Bezier curve (absolute)
sA :: RealFloat a => a -> a -> a -> a -> Text

-- | Smooth Cubic Bezier curve (relative)
sR :: RealFloat a => a -> a -> a -> a -> Text

-- | Quadratic Bezier curve (absolute)
qA :: RealFloat a => a -> a -> a -> a -> Text

-- | Quadratic Bezier curve (relative)
qR :: RealFloat a => a -> a -> a -> a -> Text

-- | Smooth Quadratic Bezier curve (absolute)
tA :: RealFloat a => a -> a -> Text

-- | Smooth Quadratic Bezier curve (relative)
tR :: RealFloat a => a -> a -> Text

-- | Arc (absolute)
aA :: RealFloat a => a -> a -> a -> a -> a -> a -> a -> Text

-- | Arc (relative)
aR :: RealFloat a => a -> a -> a -> a -> a -> a -> a -> Text

-- | closepath
z :: Text

-- | SVG Transform components | Specifies a translation by <tt>x</tt> and
--   <tt>y</tt>
translate :: RealFloat a => a -> a -> Text

-- | Specifies a scale operation by <tt>x</tt> and <tt>y</tt>
scale :: RealFloat a => a -> a -> Text

-- | Specifies a rotation by <tt>rotate-angle</tt> degrees
rotate :: RealFloat a => a -> Text

-- | Specifies a rotation by <tt>rotate-angle</tt> degrees about the given
--   time <tt>rx,ry</tt>
rotateAround :: RealFloat a => a -> a -> a -> Text

-- | Skew tansformation along x-axis
skewX :: RealFloat a => a -> Text

-- | Skew tansformation along y-axis
skewY :: RealFloat a => a -> Text

-- | Specifies a transform in the form of a transformation matrix
matrix :: RealFloat a => a -> a -> a -> a -> a -> a -> Text


-- | svg-builder Core types and functions.
module Graphics.Svg.Core

-- | Attribute name value.
data Attribute

-- | Type of an SVG element.
data Element

-- | Things that can be converted to SVG elements.
class ToElement a
toElement :: ToElement a => a -> Element

-- | Used to make specific SVG element builders.
class Term result

-- | Used for constructing elements e.g. <tt>term "circle"</tt> yields
--   <tt>circle_</tt>.
term :: Term result => Text -> [Attribute] -> result

-- | Make an attribute.
makeAttribute :: Text -> Text -> Attribute

-- | Make an SVG element builder
makeElement :: Text -> Element -> Element

-- | Make an SVG element with no end tag, contains only attributes.
makeElementNoEnd :: Text -> Element

-- | Make an SVG doctype element builder.
makeElementDoctype :: Text -> Element

-- | Add a list of attributes to an element
with :: Element -> [Attribute] -> Element

-- | Render a <a>Element</a> to lazy bytestring.
renderBS :: Element -> ByteString

-- | Render a <a>Element</a> to a file.
renderToFile :: FilePath -> Element -> IO ()

-- | Reder an <a>Element</a> to lazy text.
renderText :: Element -> Text
instance GHC.Classes.Eq Graphics.Svg.Core.Attribute
instance GHC.Show.Show Graphics.Svg.Core.Attribute
instance Data.Hashable.Class.Hashable Graphics.Svg.Core.Attribute
instance GHC.Show.Show Graphics.Svg.Core.Element
instance GHC.Base.Monoid Graphics.Svg.Core.Element
instance Data.String.IsString Graphics.Svg.Core.Element
instance Graphics.Svg.Core.ToElement GHC.Base.String
instance Graphics.Svg.Core.ToElement Data.Text.Internal.Text
instance Graphics.Svg.Core.ToElement Data.Text.Internal.Lazy.Text
instance e ~ Graphics.Svg.Core.Element => Graphics.Svg.Core.Term (e -> Graphics.Svg.Core.Element)
instance Graphics.Svg.Core.Term Graphics.Svg.Core.Element


-- | SVG elements.
module Graphics.Svg.Elements

-- | <tt>DOCTYPE</tt> element
doctype :: Element

-- | <tt>svg</tt> element + svg 1.1 Attribute
svg11_ :: Element -> Element

-- | <tt>a</tt> element
a_ :: Term result => [Attribute] -> result

-- | <tt>altglyph</tt> element

-- | <i>Deprecated: Removed from web standards.</i>
altGlyph_ :: Term result => [Attribute] -> result

-- | <tt>altglyphdef</tt> element

-- | <i>Deprecated: Removed from web standards.</i>
altGlyphDef_ :: Term result => [Attribute] -> result

-- | <tt>altglyphitem</tt> element

-- | <i>Deprecated: Removed from web standards.</i>
altGlyphItem_ :: Term result => [Attribute] -> result

-- | <tt>animate</tt> element
animate_ :: Term result => [Attribute] -> result

-- | <tt>animatecolor</tt> element

-- | <i>Deprecated: Removed from web standards.</i>
animateColor_ :: Term result => [Attribute] -> result

-- | <tt>animatemotion</tt> element
animateMotion_ :: Term result => [Attribute] -> result

-- | <tt>animatetransform</tt> element
animateTransform_ :: Term result => [Attribute] -> result

-- | <tt>circle</tt> element
circle_ :: Term result => [Attribute] -> result

-- | <tt>clipPath</tt> element or attribute
clipPath_ :: Term result => [Attribute] -> result

-- | <tt>colorProfile</tt> element
colorProfile_ :: Term result => [Attribute] -> result

-- | <tt>cursor</tt> element
cursor_ :: Term result => [Attribute] -> result

-- | <tt>defs</tt> element
defs_ :: Term result => [Attribute] -> result

-- | <tt>desc</tt> element
desc_ :: Term result => [Attribute] -> result

-- | <tt>ellipse</tt> element
ellipse_ :: Term result => [Attribute] -> result

-- | <tt>feblend</tt> element
feBlend_ :: Term result => [Attribute] -> result

-- | <tt>fecolormatrix</tt> element
feColorMatrix_ :: Term result => [Attribute] -> result

-- | <tt>fecomponenttransfer</tt> element
feComponentTransfer_ :: Term result => [Attribute] -> result

-- | <tt>fecomposite</tt> element
feComposite_ :: Term result => [Attribute] -> result

-- | <tt>feconvolvematrix</tt> element
feConvolveMatrix_ :: Term result => [Attribute] -> result

-- | <tt>fediffuselighting</tt> element
feDiffuseLighting_ :: Term result => [Attribute] -> result

-- | <tt>fedisplacementmap</tt> element
feDisplacementMap_ :: Term result => [Attribute] -> result

-- | <tt>fedistantlight</tt> element
feDistantLight_ :: Term result => [Attribute] -> result

-- | <tt>feflood</tt> element
feFlood_ :: Term result => [Attribute] -> result

-- | <tt>fefunca</tt> element
feFuncA_ :: Term result => [Attribute] -> result

-- | <tt>fefuncb</tt> element
feFuncB_ :: Term result => [Attribute] -> result

-- | <tt>fefuncg</tt> element
feFuncG_ :: Term result => [Attribute] -> result

-- | <tt>fefuncr</tt> element
feFuncR_ :: Term result => [Attribute] -> result

-- | <tt>fegaussianblur</tt> element
feGaussianBlur_ :: Term result => [Attribute] -> result

-- | <tt>feimage</tt> element
feImage_ :: Term result => [Attribute] -> result

-- | <tt>femerge</tt> element
feMerge_ :: Term result => [Attribute] -> result

-- | <tt>femergenode</tt> element
feMergeNode_ :: Term result => [Attribute] -> result

-- | <tt>femorphology</tt> element
feMorphology_ :: Term result => [Attribute] -> result

-- | <tt>feoffset</tt> element
feOffset_ :: Term result => [Attribute] -> result

-- | <tt>fepointlight</tt> element
fePointLight_ :: Term result => [Attribute] -> result

-- | <tt>fespecularlighting</tt> element
feSpecularLighting_ :: Term result => [Attribute] -> result

-- | <tt>fespotlight</tt> element
feSpotLight_ :: Term result => [Attribute] -> result

-- | <tt>fetile</tt> element
feTile_ :: Term result => [Attribute] -> result

-- | <tt>feturbulence</tt> element
feTurbulence_ :: Term result => [Attribute] -> result

-- | <tt>filter_</tt> element
filter_ :: Term result => [Attribute] -> result

-- | <tt>font</tt> element
font_ :: Term result => [Attribute] -> result

-- | <tt>fontFace</tt> element
fontFace_ :: Term result => [Attribute] -> result

-- | <tt>fontFaceFormat</tt> element
fontFaceFormat_ :: [Attribute] -> Element

-- | <tt>fontFaceName</tt> element
fontFaceName_ :: [Attribute] -> Element

-- | <tt>fontFaceSrc</tt> element
fontFaceSrc_ :: Term result => [Attribute] -> result

-- | <tt>fontFaceUri</tt> element
fontFaceUri_ :: Term result => [Attribute] -> result

-- | <tt>foreignobject</tt> element
foreignObject_ :: Term result => [Attribute] -> result

-- | <tt>g</tt> element
g_ :: Term result => [Attribute] -> result

-- | <tt>glyph</tt> element or attribute
glyph_ :: Term result => [Attribute] -> result

-- | <tt>glyphref</tt> element
glyphRef_ :: [Attribute] -> Element

-- | <tt>hkern</tt> element
hkern_ :: [Attribute] -> Element

-- | <tt>image</tt> element
image_ :: Term result => [Attribute] -> result

-- | <tt>line</tt> element
line_ :: Term result => [Attribute] -> result

-- | <tt>lineargradient</tt> element
linearGradient_ :: Term result => [Attribute] -> result

-- | <tt>marker</tt> element
marker_ :: Term result => [Attribute] -> result

-- | <tt>mask</tt> element or attribute
mask_ :: Term result => [Attribute] -> result

-- | <tt>metadata</tt> element
metadata_ :: Term result => [Attribute] -> result

-- | <tt>missingGlyph</tt> element
missingGlyph_ :: Term result => [Attribute] -> result

-- | <tt>mpath</tt> element
mpath_ :: Term result => [Attribute] -> result

-- | <tt>path</tt> element
path_ :: Term result => [Attribute] -> result

-- | <tt>pattern</tt> element
pattern_ :: Term result => [Attribute] -> result

-- | <tt>polygon</tt> element
polygon_ :: Term result => [Attribute] -> result

-- | <tt>polyline</tt> element
polyline_ :: Term result => [Attribute] -> result

-- | <tt>radialgradient</tt> element
radialGradient_ :: Term result => [Attribute] -> result

-- | <tt>rect</tt> element
rect_ :: Term result => [Attribute] -> result

-- | <tt>script</tt> element
script_ :: Term result => [Attribute] -> result

-- | <tt>set</tt> element
set_ :: Term result => [Attribute] -> result

-- | <tt>stop</tt> element
stop_ :: Term result => [Attribute] -> result

-- | <tt>style</tt> element
style_ :: Term result => [Attribute] -> result

-- | <tt>svg</tt> element
svg_ :: Term result => [Attribute] -> result

-- | <tt>switch</tt> element
switch_ :: Term result => [Attribute] -> result

-- | <tt>symbol</tt> element
symbol_ :: Term result => [Attribute] -> result

-- | <tt>text_</tt> element
text_ :: Term result => [Attribute] -> result

-- | <tt>textpath</tt> element
textPath_ :: Term result => [Attribute] -> result

-- | <tt>title</tt> element
title_ :: Term result => [Attribute] -> result

-- | <tt>tref</tt> element
tref_ :: Term result => [Attribute] -> result

-- | <tt>tspan</tt> element
tspan_ :: Term result => [Attribute] -> result

-- | <tt>use</tt> element
use_ :: Term result => [Attribute] -> result

-- | <tt>view</tt> element
view_ :: Term result => [Attribute] -> result

-- | <tt>vkern</tt> element
vkern_ :: [Attribute] -> Element


-- | SVG Attributes.
module Graphics.Svg.Attributes

-- | Infix version of <a>bindAttr</a> Each argument is set using
--   <a>&lt;&lt;-</a>, the <a>bindAttr</a> function or <a>-&gt;&gt;</a>.
--   
--   <pre>
--   [Width_ &lt;&lt;- "100%", Height_ &lt;&lt;- "100%", Fill_ &lt;&lt;- "red"]
--   </pre>
(<<-) :: AttrTag -> Text -> Attribute
infix 4 <<-

-- | Infix version of <a>bindAttr</a> with it's arguments reversed.
--   
--   <pre>
--   ["100%" -&gt;&gt; Width_, "100%" -&gt;&gt; Height_, "red" -&gt;&gt; Fill_]
--   </pre>
(->>) :: Text -> AttrTag -> Attribute
infix 4 ->>

-- | Make an <a>Attribute</a> from it's value constructor and it's text
--   value. by combining an <a>AttrTag</a> with it's value.
--   
--   <pre>
--   [bindAttr Width "100%, bindAttr Height "100%", bindAttr Fill "red"]
--   </pre>
bindAttr :: AttrTag -> Text -> Attribute
data AttrTag
Accent_height_ :: AttrTag
Accumulate_ :: AttrTag
Additive_ :: AttrTag
Alignment_baseline_ :: AttrTag
Alphabetic_ :: AttrTag
Amplitude_ :: AttrTag
Arabic_form_ :: AttrTag
Ascent_ :: AttrTag
AttributeName_ :: AttrTag
AttributeType_ :: AttrTag
Azimuth_ :: AttrTag
BaseFrequency_ :: AttrTag
Baseprofile_ :: AttrTag
Baseline_shift_ :: AttrTag
Bbox_ :: AttrTag
Begin_ :: AttrTag
Bias_ :: AttrTag
By_ :: AttrTag
CalcMode_ :: AttrTag
Cap_height_ :: AttrTag
Class_ :: AttrTag
Clip_ :: AttrTag
Clip_path_ :: AttrTag
Clip_rule_ :: AttrTag
ClipPathUnits_ :: AttrTag
Color_ :: AttrTag
Color_interpolation_ :: AttrTag
Color_interpolation_filters_ :: AttrTag
Color_profile_ :: AttrTag
Color_rendering_ :: AttrTag
ContentScriptType_ :: AttrTag
ContentStyleType_ :: AttrTag
Cursor_ :: AttrTag
Cx_ :: AttrTag
Cy_ :: AttrTag
D_ :: AttrTag
Descent_ :: AttrTag
DiffuseConstant_ :: AttrTag
Direction_ :: AttrTag
Display_ :: AttrTag
Divisor_ :: AttrTag
Dominant_baseline_ :: AttrTag
Dur_ :: AttrTag
Dx_ :: AttrTag
Dy_ :: AttrTag
EdgeMode_ :: AttrTag
Elevation_ :: AttrTag
Enable_background_ :: AttrTag
End_ :: AttrTag
Exponent_ :: AttrTag
ExternalResourcesRequired_ :: AttrTag
Fill_ :: AttrTag
Fill_opacity_ :: AttrTag
Fill_rule_ :: AttrTag
Filter_ :: AttrTag
FilterRes_ :: AttrTag
FilterUnits_ :: AttrTag
Flood_color_ :: AttrTag
Flood_opacity_ :: AttrTag
Font_family_ :: AttrTag
Font_size_ :: AttrTag
Font_size_adjust_ :: AttrTag
Font_stretch_ :: AttrTag
Font_style_ :: AttrTag
Font_variant_ :: AttrTag
Font_weight_ :: AttrTag
Format_ :: AttrTag
From_ :: AttrTag
Fx_ :: AttrTag
Fy_ :: AttrTag
G1_ :: AttrTag
G2_ :: AttrTag
Glyph_name_ :: AttrTag
Glyph_orientation_horizontal_ :: AttrTag
Glyph_orientation_vertical_ :: AttrTag
GradientTransform_ :: AttrTag
GradientUnits_ :: AttrTag
Hanging_ :: AttrTag
Height_ :: AttrTag
Horiz_adv_x_ :: AttrTag
Horiz_origin_x_ :: AttrTag
Horiz_origin_y_ :: AttrTag
Id_ :: AttrTag
Ideographic_ :: AttrTag
Image_rendering_ :: AttrTag
In_ :: AttrTag
In2_ :: AttrTag
Intercept_ :: AttrTag
K_ :: AttrTag
K1_ :: AttrTag
K2_ :: AttrTag
K3_ :: AttrTag
K4_ :: AttrTag
KernelMatrix_ :: AttrTag
KernelUnitLength_ :: AttrTag
Kerning_ :: AttrTag
KeyPoints_ :: AttrTag
KeySplines_ :: AttrTag
KeyTimes_ :: AttrTag
Lang_ :: AttrTag
LengthAdjust_ :: AttrTag
Letter_spacing_ :: AttrTag
Lighting_color_ :: AttrTag
LimitingConeAngle_ :: AttrTag
Local_ :: AttrTag
Marker_end_ :: AttrTag
Marker_mid_ :: AttrTag
Marker_start_ :: AttrTag
MarkerHeight_ :: AttrTag
MarkerUnits_ :: AttrTag
MarkerWidth_ :: AttrTag
MaskContentUnits_ :: AttrTag
MaskUnits_ :: AttrTag
Mathematical_ :: AttrTag
Max_ :: AttrTag
Media_ :: AttrTag
Method_ :: AttrTag
Min_ :: AttrTag
Mode_ :: AttrTag
Name_ :: AttrTag
NumOctaves_ :: AttrTag
Offset_ :: AttrTag
Onabort_ :: AttrTag
Onactivate_ :: AttrTag
Onbegin_ :: AttrTag
Onclick_ :: AttrTag
Onend_ :: AttrTag
Onerror_ :: AttrTag
Onfocusin_ :: AttrTag
Onfocusout_ :: AttrTag
Onload_ :: AttrTag
Onmousedown_ :: AttrTag
Onmousemove_ :: AttrTag
Onmouseout_ :: AttrTag
Onmouseover_ :: AttrTag
Onmouseup_ :: AttrTag
Onrepeat_ :: AttrTag
Onresize_ :: AttrTag
Onscroll_ :: AttrTag
Onunload_ :: AttrTag
Onzoom_ :: AttrTag
Opacity_ :: AttrTag
Operator_ :: AttrTag
Order_ :: AttrTag
Orient_ :: AttrTag
Orientation_ :: AttrTag
Origin_ :: AttrTag
Overflow_ :: AttrTag
Overline_position_ :: AttrTag
Overline_thickness_ :: AttrTag
Panose_1_ :: AttrTag
Paint_order_ :: AttrTag
Path_ :: AttrTag
PathLength_ :: AttrTag
PatternContentUnits_ :: AttrTag
PatternTransform_ :: AttrTag
PatternUnits_ :: AttrTag
Pointer_events_ :: AttrTag
Points_ :: AttrTag
PointsAtX_ :: AttrTag
PointsAtY_ :: AttrTag
PointsAtZ_ :: AttrTag
PreserveAlpha_ :: AttrTag
PreserveAspectRatio_ :: AttrTag
PrimitiveUnits_ :: AttrTag
R_ :: AttrTag
Radius_ :: AttrTag
RefX_ :: AttrTag
RefY_ :: AttrTag
Rendering_intent_ :: AttrTag
RepeatCount_ :: AttrTag
RepeatDur_ :: AttrTag
RequiredExtensions_ :: AttrTag
RequiredFeatures_ :: AttrTag
Restart_ :: AttrTag
Result_ :: AttrTag
Rotate_ :: AttrTag
Rx_ :: AttrTag
Ry_ :: AttrTag
Scale_ :: AttrTag
Seed_ :: AttrTag
Shape_rendering_ :: AttrTag
Slope_ :: AttrTag
Spacing_ :: AttrTag
SpecularConstant_ :: AttrTag
SpecularExponent_ :: AttrTag
SpreadMethod_ :: AttrTag
StartOffset_ :: AttrTag
StdDeviation_ :: AttrTag
Stemh_ :: AttrTag
Stemv_ :: AttrTag
StitchTiles_ :: AttrTag
Stop_color_ :: AttrTag
Stop_opacity_ :: AttrTag
Strikethrough_position_ :: AttrTag
Strikethrough_thickness_ :: AttrTag
String_ :: AttrTag
Stroke_ :: AttrTag
Stroke_dasharray_ :: AttrTag
Stroke_dashoffset_ :: AttrTag
Stroke_linecap_ :: AttrTag
Stroke_linejoin_ :: AttrTag
Stroke_miterlimit_ :: AttrTag
Stroke_opacity_ :: AttrTag
Stroke_width_ :: AttrTag
Style_ :: AttrTag
SurfaceScale_ :: AttrTag
SystemLanguage_ :: AttrTag
TableValues_ :: AttrTag
Target_ :: AttrTag
TargetX_ :: AttrTag
TargetY_ :: AttrTag
Text_anchor_ :: AttrTag
Text_decoration_ :: AttrTag
Text_rendering_ :: AttrTag
TextLength_ :: AttrTag
To_ :: AttrTag
Transform_ :: AttrTag
Type_ :: AttrTag
U1_ :: AttrTag
U2_ :: AttrTag
Underline_position_ :: AttrTag
Underline_thickness_ :: AttrTag
Unicode_ :: AttrTag
Unicode_bidi_ :: AttrTag
Unicode_range_ :: AttrTag
Units_per_em_ :: AttrTag
V_alphabetic_ :: AttrTag
V_hanging_ :: AttrTag
V_ideographic_ :: AttrTag
V_mathematical_ :: AttrTag
Values_ :: AttrTag
Version_ :: AttrTag
Vert_adv_y_ :: AttrTag
Vert_origin_x_ :: AttrTag
Vert_origin_y_ :: AttrTag
ViewBox_ :: AttrTag
ViewTarget_ :: AttrTag
Visibility_ :: AttrTag
Width_ :: AttrTag
Widths_ :: AttrTag
Word_spacing_ :: AttrTag
Writing_mode_ :: AttrTag
X_ :: AttrTag
X_height_ :: AttrTag
X1_ :: AttrTag
X2_ :: AttrTag
XChannelSelector_ :: AttrTag
XlinkActuate_ :: AttrTag
XlinkArcrole_ :: AttrTag
XlinkHref_ :: AttrTag
XlinkRole_ :: AttrTag
XlinkShow_ :: AttrTag
XlinkTitle_ :: AttrTag
XlinkType_ :: AttrTag
XmlBase_ :: AttrTag
XmlLang_ :: AttrTag
XmlSpace_ :: AttrTag
Y_ :: AttrTag
Y1_ :: AttrTag
Y2_ :: AttrTag
YChannelselector_ :: AttrTag
Z_ :: AttrTag
ZoomAndPan_ :: AttrTag


-- | DSL for creating SVG.
module Graphics.Svg

-- | An infix synonym for <a>mappend</a>.
(<>) :: Monoid m => m -> m -> m
infixr 6 <>
prettyText :: Element -> Text