<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
        "https://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<?xml-model href="project.rnc" type="application/relax-ng-compact-syntax"?>
<!-- foo -->
<svg
  xmlns="http://www.w3.org/2000/svg"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  width="200"
  height="100"
  viewBox="0 0 200 100"
>
  <title>Style inheritance and the use element</title>
  <desc>
    &anp; &#12345;
    <![CDATA[
      foo
    ]]>
    bar
  </desc>
  <?pagebreak?>
  <style></style>
  <style type="text/css">
    circle          { stroke-opacity: 0.7; }
    .special circle { stroke: green; }
    use             { stroke: purple;
                      fill: orange; }
  </style>
  <?pagebreak?>
    <g class="special" style="fill: blue">
        <circle id="c" cy="50" cx="50" r="40" stroke-width="20" />
    </g>
  <use xlink:href="#c" x="100" />
</svg>
<!-- bar -->
