Using Inkscape 0.92 and Ubuntu 17.04
I have imported a hand coded "yinyang emblem" SVG file into Inkscape and find that an included path is not displayed in the Inkscape work space, although it is displayed as I expect in every other file viewer that I have tested.
When all other code is removed from the file, leaving only the problem path, other programs show the expected "yin" symbol from the yinyang emblem, but Inkscape shows a blank page.
The file with the problem path isolated is as follows
<?xml version="1.0" standalone="no"?>
<svg version = "1.1"
xmlns="
http://www.w3.org/2000/svg"
baseProfile="full"
width="100" height="100"
viewbox="0 0 100 100"
preserveAspectRatio="xMidYMid slice">
<g id="yinyang" >
// yin shape - left half-circle underneath right half-circle joined by a larger right half circle
<path class="yin" fill="black" d="
M50 50
a 24.5 24.5, 0 0 0, 0 49
a 24.5 24.5, 0 0 0, 0 -49
a 49 49, 0 0 01, 0 98 "
/>
</g>
</svg>
edit - removed one line of "commented out" code
edit 2 -
I thought this might be related to the problem reported at
https://forum.inkscapecommunity.com/index.php?topic=889.0but that SVG file displays correctly in my version of Inkscape (0.92)