title | description | published | date | tags | editor | dateCreated |
---|---|---|---|---|---|---|
Templates and schemas |
true |
2023-10-17 11:48:14 UTC |
markdown |
2021-11-15 10:07:09 UTC |
To use one of these templates you will also need to download both of the schemas below and keep them all in the same directory. For those that use Git, you can clone the repository and go from there.
NOTE: While RFCs validate with the same schema as Internet-Drafts, using an XML RFC as a template for an Internet-Draft is not recommended as the prep tool hard codes multiple data into the RFC, making it unsuitable for further manual editing. {.is-warning}
draft-rfcxml-general-template-standard-00.xml is an RFCXML template that includes examples of the most commonly used features of RFCXML with comments explaining how to customise them. This template can be quickly turned into an I-D by editing the examples provided.
draft-rfcxml-general-template-bare-00.xml is an RFCXML template for experienced authors who want to start from the barest template possible. This template validates correctly but is not a valid I-D as many key sections are missing.
draft-rfcxml-general-template-annotated-00.xml is an RFCXML template that includes examples for almost all of the features of RFCXML and many examples of how to achieve specific formatting, along with ample comments to explain the examples.
rfc7991bis.rnc is the RelaxNG Compact Schema for the current version of RFCXML. XML editors that validate against a schema and which support schema-aware editing, require a local copy of this schema and the following processing instruction in the RFCXML file:
<?xml-model href="rfc7991bis.rnc"?>
All of the templates above aleady have this processing instruction included and so will support schema validation and schema-aware editing out of the box.
SVG-1.2-RFC.rnc is the RelaxNG Compact schema for the subset of SVG allowed in RFCXML documents (SVG 1.2 RFC). This schema is referenced in rfc7991bis.rnc and so no specific processing instruction is required to include it but a local copy must be present.
In XML a character entity is a way of using a name in the XML, such as &nbhy;
in place of the character itself (in this example the 'non-breaking hyphen' character).
The templates above include a small set of character entities defined in a DOCTYPE statement. These are for typographic characters that if entered directly into the source can cause problems, either because they are invisible to the reader, or indistinguishable from other typographic characters.
They are typically used for controlling the placement of line breaks in rendering:
- to prevent a line break between words (e.g.BCP 14
to prevent a line break within "BCP 14")&nbhy;
- to prevent a line break after a hyphen (e.g.EUI&nbhy;64
to prevent a line break within "EUI-64")&wj;
- to prevent a line break in a specific location (e.g.S/&wj;MIME
to prevent a line break after the "/" in "S/MIME")&zwsp;
- to mark a good location to insert a line break (e.g. forcing the content of a table cell to have a line break in the desired location.<td>request-inactive-&zwsp;other-active</td>
as in Table 10 of RFC 9132)
For info, this DOCTYPE statement is:
<!DOCTYPE rfc [
<!ENTITY nbsp " ">
<!ENTITY zwsp "​">
<!ENTITY nbhy "‑">
<!ENTITY wj "⁠">
]>
If you wish to use additional character entities then the recommended method is to add further inline definitions to this DOCTYPE declaration. Replacing the DOCTYPE with a reference to an external entity file is possible but not recommended as that will prevent you from using the Author Tools web service.
The following legacy files are for those working with old I-Ds or RFCs and should not be used for any new I-Ds.
rfc7991.rnc is the RelaxNG Compact Schema for the first release of v3 of RFCXML as documented in RFC7991. Use rfc7991bis.rnc instead.
rfc7749.rnc is the RelaxNG Compact Schema for v2 of RFCXML as documented in RFC7749. When originally published, this file was called v2.rnc.
rfc2629-other.ent is a small set of character entities. This file is no longer needed as the special processing of non-ASCII character has been superseded by direct support for non-ASCII characters in RFCXML.
rfc2629-xhtml.ent is a larger set of character entities. This file is no longer needed as the special processing of non-ASCII character has been superseded by direct support fornon-ASCII characters in RFCXML.
rfc2629.dtd is the DTD for v1 of RFCXML as documented in RFC2629.
Community developed Markdown templates specific to kramdown-rfc:
Community developed Markdown examples specific to mmark:
Community developed Asciidoc template specific to metanorma-ietf: