Using the SVG domain in DITA 1.3
Posted: Fri Jan 24, 2020 4:33 am
I'm trying to use the SVG domain for the first time, and can't figure out why the proper element structure fails to validate. I'm using oXygen 21.1 with this markup:
The <svg-container> and <svgref> elements aren't presented as auto-fill options when I start typing them, and they fail validation.
What am I missing?
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE reference PUBLIC "-//OASIS//DTD DITA Reference//EN" "reference.dtd">
<reference id="general_description2" ditaarch:DITAArchVersion="1.3">
<title>Block Diagram</title>
<refbody>
<section>
<fig>
<title>Block Diagram</title>
<svg-container>
<svgref href="diagram.svg" format="svg"/>
</svg-container>
</fig>
</section>
</refbody>
</reference>
What am I missing?