Error: The processing instruction target matching “[xX][mM][lL]” is not allowed

前端 未结 7 1679
暖寄归人
暖寄归人 2020-11-22 03:24

This error,

The processing instruction target matching \"[xX][mM][lL]\" is not allowed

occurs whenever I run an XSLT page that b

相关标签:
7条回答
  • 2020-11-22 04:14

    I had a similar issue with 50,000 rdf/xml files in 5,000 directories (the Project Gutenberg catalog file). I solved it with riot (in the jena distribution)

    the directory is cache/epub/NN/nn.rdf (where NN is a number)

    in the directory above the directory where all the files are, i.e. in cache

    riot epub/*/*.rdf --output=turtle > allTurtle.ttl
    

    This produces possibly many warnings but the result is in a format which can be loaded into jena (using the fuseki web interface).

    surprisingly simple (at least in this case).

    0 讨论(0)
提交回复
热议问题