-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
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
No version="3"
attribute when using --v3
#213
Comments
Hi Wiktor,
on 2023-10-10, at 10:21, Wiktor Kwapisiewicz ***@***.***> wrote:
Hi,
I'd like to generate v3 rfc xml and I found that there's --v3 option
but when I then process the resulting file with idnits it complains about the missing version attribute:
You need to run the output of kramdown-rfc through xml2rfc --v2v3 to obtain a v3 RFCXML file. kramdown-rfc deliberately relies on xml2rfc to generate whatever today’s definition of v3 RFCXML is embodied in that code.
Inspecting file spec.xml
Errors:
For xml checks, version 3 is required:
spec.xml(15): Expected <rfc ... version="3" ...>, found None
Found 6 lines with control characters:
spec.xml(446): Found control character 0x09 in column 0
spec.xml(447): Found control character 0x09 in column 0
spec.xml(478): Found control character 0x09 in column 0
spec.xml(489): Found control character 0x09 in column 0
spec.xml(505): Found control character 0x09 in column 0
spec.xml(506): Found control character 0x09 in column 0
Is this something that can be easily adjusted?
The messages about 0x09 are about HT (“TAB”) characters.
Do not, ever, use these in a source file...
Grüße, Carsten
|
Ah, okay, I think I thought passing
Is that intended to be used in conjunction with |
Hi,
I'd like to generate v3 rfc xml and I found that there's
--v3
option but when I then process the resulting file withidnits
it complains about the missingversion
attribute:Is this something that can be easily adjusted?
Thanks for this great piece of software! 👋
The text was updated successfully, but these errors were encountered: