document-svg 2.0.2

Convert PDF, Word, Excel, PowerPoint, diagram and CAD files into one SVG per page, locally — a Rust library and the docsvg command
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<xmi:XMI xmi:version="2.1"
 xmlns:xmi="http://schema.omg.org/spec/XMI/2.1"
 xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML">
  <uml:Model xmi:type="uml:Model" xmi:id="model-vehicle" name="Vehicle control">
    <packagedElement xmi:type="uml:Package" xmi:id="pkg-brakes" name="Braking">
      <packagedElement xmi:type="uml:Class" xmi:id="class-controller" name="BrakeController" visibility="public">
        <ownedAttribute xmi:type="uml:Property" xmi:id="attr-pressure" name="pressure" type="double" visibility="private" />
        <ownedOperation xmi:type="uml:Operation" xmi:id="op-apply" name="applyBrake" />
      </packagedElement>
      <packagedElement xmi:type="uml:Class" xmi:id="class-sensor" name="WheelSensor">
        <ownedAttribute xmi:type="uml:Property" xmi:id="attr-speed" name="wheelSpeed" type="double" />
      </packagedElement>
      <packagedElement xmi:type="uml:Association" xmi:id="assoc-measures" name="measures" memberEnd="attr-pressure attr-speed" />
    </packagedElement>
  </uml:Model>
</xmi:XMI>