We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current XML
<metadata> <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:d="http://www.daisy.org/ns/pipeline/data" id="title">三匹の子ぶた</dc:title> <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/" id="pub-id">jsrpd-pigs-j</dc:identifier> <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:d="http://www.daisy.org/ns/pipeline/data">ja</dc:language> <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:d="http://www.daisy.org/ns/pipeline/data" id="date">2005-04-07</dc:date> <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:d="http://www.daisy.org/ns/pipeline/data">EPUB3</dc:format>
is not wrong, but could be simplified to
<metadata xmlns:dc="http://purl.org/dc/elements/1.1/"> <dc:title id="title">三匹の子ぶた</dc:title> <dc:identifier id="pub-id">jsrpd-pigs-j</dc:identifier> <dc:language >ja</dc:language> <dc:date id="date">2005-04-07</dc:date> <dc:format>EPUB3</dc:format> </metadata>
Related:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current XML
is not wrong, but could be simplified to
Related:
The text was updated successfully, but these errors were encountered: