There are two ways:
- Use the Author Tools web service
- Use xml2rfc locally. On the command line:
xml2rfc --v2v3 inputfile.xml
. You can use the --add-xinclude
option to replace RFC and I-D reference elements with the appropriate xi:include
element.
You may want to do the following (for the sake of generating good output and having a semantically accurate XML file):
- Review each list.
- Is it really a list? Or should indentation be added in another manner, e.g., <blockquote>.
- If so, should it be <dl>, <ul>, or <ol>?
- Review each <artwork>.
- Should it be <sourcecode>? If so, what type?
- Should it be a table?
- Check for misuse of lists where [<aside>] or [<blockquote>] might be more appropriate.
- Search for URLs; should these be <eref> or should a full reference be created and linked using [<xref>]?
- Look for equations or other text where new features may improve clarity.
- Search for hardcoded citation tags (e.g.,
[RFC5234]
) and update to <xref>s.
- Search for "section" and make a link for any section number in RFCs and I-Ds (using <xref> with section and sectionFormat attributes).
- Review postal addresses of authors; has each address been tagged correctly?
- xml2rfc warns "Setting consensus="true" for IETF STD document".
This is being discussed on the xml2rfc-dev list. You should disregard this warning for now.
- xml2rfc fails with "Reserved anchor name: section-.... Don't use anchor names beginning with one of u-, section-, iref-, figure-, table-".
Rename your section.
- If you use i-d template then xml2rfc warns that "The 'docName' attribute of the <rfc/> element should have a revision number as the last component: docName="draft-foo-bar-02"."
This issue is tracked in https://github.com/ietf-tools/xml2rfc/issues/439. You can't modify your source to avoid it.
Some highlights are the handling of non-ASCII characters in RFCXML, new text formatting elements, and SVG Diagrams. For complete details, see Section 1.3 of RFC7991.
The following elements still appear in the schema but have been deprecated and should not be used.
- <texttable> <ttcol> <c>
These three were previously used to create tables and have now been replaced with <table>, <thead>, <tbody>, <tfoot>, <tr> , <th> and <td> elements as found in HTML.
- <facsimile>
This is is no longer used as facsmilies are no longer used and email is a more useful method of contact.
- <format>
This was used in <reference> and is replaced with the use of the target attribute in <reference>.
- <list>
This was used for a list and has been replaced with <ul>, <ol>, <dl> and <li> as found in HTML.
- <postamble> <preamble>
These were special elements associated with text before or after figures and tables. The recommended replacement is to add <t> paragraphs before and/or after the figure or table.
- <relref>
The functionality of the <xref> element has extended to replicate the functionality of this element
- <spanx>
This was a generic text formatting element, now replaced with specific text attribute elements:
- <em> for emphasised text (typically rendered as slanted or italic text )
- <strong> for boldly rendered text
- <sub> for subscript text
- <sup> for superscript text
- <tt> for teletype text (typically a generic mono-spaced text).
- <vspace>
This was used for vertical spacing and has been replaced by an attribute newline="true"
when used with definition lists, in order to make the definition start on a new line. For other use cases, there is no replacement.
The following attributes still appear in the schema for non-deprecated elements but have been deprecated and should not be used.
There were a number of xml2rfc features that have been superseded by new features introduced into the RFCXML language itself.
In v2 the canonical file format was ASCII plaintext and so xml2rfc implemented special processing whereby certain non-ASCII characters were accepted in the RFCXML source and replaced with ASCII equivalents. For exmple, if the v2 RFCXML source contained the character entity £
it would be replaced in the rendered plaintext with GBP
instead of the £
non-ASCII character.
With the switch in v3 to the canonical format of UTF-8 XML and the direct support of non-ASCII characters in RFCXML this special processing was removed.
A v2 RFCXML source could contain range of custom XML processing instructions of the form <?rfc attribute='value' ?>
. These have all been superseded by new language features in RFCXML and should not be used.