Style to Tag Mapping

The docx2dita transform is driven by a configuration file, the style-to-tag map.

The style-to-tag map enables an entirely or almost-entirely configuration-driven transformation of styled Word documents into DITA-based XML, specialized or not. Through careful design of Word templates it is possible to quickly configure the transformation to produce good XML documents.

The style-to-tag map consists of a sequence of style elements, where each style element defines the mapping for a paragraph, character, list, or table style to the appropriate DITA XML structure. The mapping document may also include an initial <documentation> element that can hold documentation in any markup language (its content is ignored and not validated), as well as <output> elements that define the public and system IDs to use for any generated map or topic documents (modeled on the XSLT <output> element).

The style elements can be:
  • <paragraphStyle> - Used for paragraph styles
  • <characterStyle> - Used for character styles
  • <style> - Obsolete. This element was used for all kinds of styles, before the dita4publishers release 0.9.19RC12. The latest Word2DITA release requires that you migrate your style-to-tag map to the latest markup.

The distinct element types for paragraph and character styles include subelements for defining map, topicref, and topic generation details.

The basic rules and constraints for the mapping are:
  • The result document always consists of a single root topic or map. The first non-skipped and non-root-topic-prolog paragraph in the Word document must be of structure type "topicTitle", "map", or "mapTitle" and level "0" (zero).
  • The @level value on each style determines how the flat sequence of Word paragraphs translates into a hierarchy of maps and topics. You must specify appropriate @level values and you cannot skip levels (you cannot have a level-1 paragraph followed by a level-3 paragraph). You can configure automatic level determination so that you don't have to have explicit styles for very possible combination of levels or for explicit levels.
  • Paragraph styles that map to topic titles and contained elements (within topic bodies) must map to exactly one fixed level or specify a relative level value (current level, plus one, or minus one) and a "level group". Most of your styles will map to fixed levels, but things that may occur at many levels and that should always be leveled relative to their context can be defined using relative levels. Examples include topic-creating paragraphs and paragraphs for things that can occur within the topic body or within list items or other contexts.
  • Character style mapping is flat within a paragraph: there is currently no general way to infer multiple levels of inline markup from a flat sequence of character runs (this is more a limitation of Word's character styles than of the mapping mechanism). For version 1.0.0R28 there is a new "auto styling" feature that automatically creates styles for manually-formatted runs. A built-in post-process (the "final-fixup" mode that is applied to topics before they are written to files) translates styles like "b-i" (for a run that was both bold and italic) into nested <b> and <i> elements. This post process technique can be applied to other inline styles using custom extensions to the final-fixup mode.
  • Each mapped style effectively says "I'm this type of structure, I go in this part of the topic, and (if necessary), I'm contained by this containing element." That, plus other details as needed for specific types of target elements, is sufficient to enable accurate creation of DITA XML from appropriately-styled Word documents (in most cases).
  • Paragraphs that generate topics can also generate maps and topicrefs to those topics. This allows you to generate maps and submaps as well as topics.
  • Common containment is determined by adjacency of similar container types and levels. For example, within a topic body, each sequence of adjacent paragraphs with the same @@containerType and @@level value will be grouped together within the same result element as determined by the @@containerType value.
Each style mapping takes the following attributes (see the style2tagmap/rng/style2tagmap.rng grammar in the DITA for Publishers doctypes plugin for details):
@@styleName
(Required unless @@styleId is specified) The Word style name. This is the value in the @@w:val attribute of the <w:style>/<w:name> element whose @@w:styleId value matches the style ID specified by a given paragraph, text run, list item, or table. This is the display name of the style as shown in the various style-related dialogs in Word. The style name is not case sensitive, so "Heading 1" and "heading 1" identify the same style. Note that styles may have associated aliases. Mapping to aliases is not supported as of version 0.9.16.

If you specify @@styleName you should not specify @@styleId. If you specify both then @@styleName is used.

@@styleId
(Required if @@styleName is not specified) The Word style ID. This is the value in the @@w:val attribute of the <w:*Style> element associated with given paragraph, text run, list item, or table. Note that this value is not the same as the display name of the style. For example, spaces and underscores in style names are removed to form the style ID. In general, you can construct the style ID for a given style by simply removing all spaces from the style's display name. However, some situations may result in wildly different and unpredicatable style IDs, such as using a localized version of Word or exporting the Word document from some other system or tool.

If you specify @@styleId you should not specify @@styleName. If both are specified, @@styleName is used.

@@structureType
(Required) Indicates the type of target structure the Word construct represents. Possible values are:
topicTitle
Paragraphs that start new topics and provide their titles. The style mapping must also indicate the topic type, prolog type, body type, and topic nesting level.
map
Paragraphs that start new maps without titles.
mapTitle
Paragraphs that start new maps and provide their titles.
topicHead
Paragraphs that generate new <topichead> elements in the result map and provide their titles.
topicGroup
Paragraphs that generate new <topicgroup> elements in the result map. Topic groups may have titles (and generated topic groups will use the paragraph content as the title) but topic group titles are always ignored in output per the DITA 1.2 specification.
topicmeta
Paragraphs that contribute metadata to a map or topicref.
prologData
Paragraphs that contribute metadata to the prolog container of a topic..
section
Paragraphs that start new sections and, optionally, provide their titles. The style mapping must specify the section tag name and how the section title is determined (@@spectitle).
dt
A paragraph that is the definition term part of a definition list entry.
dd
A paragraph that is the definition description part of a definition list entry. Must immediately follow a "dt" structure type paragraph.
skip
The paragraph is completely ignored by the transform. Skipped paragraphs are ignored for the purpose of determining adjacent paragraphs when determining common containers. This means, for example, that a sequence of paragraphs mapped to the same level 1 container, interrupted by a skipped paragraph, and followed by more paragraphs in the same level 1 container will be in a single container instance in the result.
xref
Represents a cross reference. Intended to map to <xref> or a specialization of <xref>.
shortdesc
A paragraph that serves as the short description for its containing topic.
block
Paragraphs that are generic block containers, e.g. DITA paragraphs or similar.
@@secondStructureType
For paragraphs that generate multiple result elements, the result structure to generate. Mostly used for paragraphs that generate both topics and maps. In this case it doesn't matter whether the map or topic is second structure type, the result will be the same. Possible values are:
mapTitle
Paragraphs that start new maps and provide their titles.
topicTitle
Paragraphs that start new topics and provide their titles. The style mapping must also indicate the topic type, prolog type, body type, and topic nesting level.
topicGroup
Paragraphs that generate new <topicgroup> elements in the result map. Topic groups may have titles (and generated topic groups will use the paragraph content as the title) but topic group titles are always ignored in output per the DITA 1.2 specification.
topicHead
Paragraphs that generate new <topichead> elements in the result map and provide their titles.
section
Paragraphs that start new sections and, optionally, provide their titles. The style mapping must specify the section tag name and how the section title is determined (@@spectitle).
@@topicZone
(Optional) Indicates which part of the target topic the result element belongs in. Possible values are:
title
Provides a topic title
titleAlts
Provides one or more title alternatives
shortdesc
Provides the short description for the topic.
prolog
Contributes to the topic prolog.
body
Contributes to the topic body as a block-level element.
inline
An inline element contained by some other generated element.
topicmeta
An element that goes in the topicmeta container of a map or topicref element.
@@containingTopic
(Optional) Indicates which topic should contain the element: "root" or "current". When @@containingTopic is "root", the paragraph will be included in the root topic, regardless of where it occurs within the input Word document. This is intended primarily for prolog components. The default is "current".
@@containerType
(Optional) For components that imply a container, such as list items, specifies the tag name of the containing element, e.g. "ul" for unordered list items. The container type value, along with the @@level value, is used to group sequences of adjacent paragraphs together. All adjacent paragraphs with the same @@containerType and @@level value will be grouped together under a single instance of the specified container.

For paragraphs that generate topicrefs, specifying @@containerType results in a common containing element for adjacent topicrefs with the same container type (for example, to put the topicrefs into a topic group).

@@tagName
(Required) Specifies the XML tag name for the result element generated directly from the Word component.
@@topicType
(Required when @@structureType or @@sectionStructureType is "topicTitle"). Specifies the topic element tag name.
@@mapType
(Required when @@structureType or @@sectionStructureType is "mapTitle"). Specifies the map element tag name.
@@prologType
(Optional). For topics, specifies the prolog element tag name.
@@abstractType
(Optional). For topics, specifies the abstract element tag name.
@@bodyType
(Optional). For topics, specifies the body element tag name.
@@shortdescType
(Optional). For topics and topicrefs, specifies the body element tag name.
@@level
(Required) Indicates the nesting level for a given topic or other containing structure. Styles within the Word document are always specific to a given nesting level or relative to the level of a preceding paragraph. For structure type "topicTitle", level "0" indicates the root topic for the result document. Note that the level hierarchy for topic- and map-creating paragraphs is distinct from the level hierarchy for paragraphs that contribute to topic bodies (topicZone="body"). For body paragraphs, the level is relative to the body itself. E.g., level="1" would be for first-level list items, level="2" for second-level list items, and so on.

The @@level value may be a number from 0 to 9 or one of the keywords current, plusOne, or minusOne. When the value is one of the keywords the level is relative. When a relative level is specified, the @@levelGroup attribute should also be specified. Adjacent paragraphs with the same @@levelGroup value will be leveled relative to the first preceding paragraph with a different (or unspecified) level group. For example, paragraphs that may occur with in the topic body or list items should all use the same level group value.

@@levelGroup
(Required if @@level is a relative level keyword). Specifies the name of the group to which the paragraph belongs. All adjacent paragraphs in the same level group will determine their level relative to the first preceding paragraph with a different or unspecified level group. If @@level is a numeric value, @@levelGroup is ignored if specified.
@@spectitle
(Optional) For section structure types, indicates how the section title is constructed. A section-generating paragraph can also provide the section title text for use in a <title> element or the section title can be provided by the paragraph following the section-generating paragraph. The possible values for @@spectitle are:
#toColon
The paragraph is expected to have initial text terminated by a colon and whitespace (": "). The section's @@spectitle attribute is set to the value of the text up to but not including the colon. The text following the colon and whitespace is used as the first paragraph of the section, if any.
#toEmdash
The paragraph is expected to have initial text terminated by an em dash ("—") and optional whitespace. The section's @@spectitle attribute is set to the value of the text up to but not including the dash. The text following the dash is used as the first paragraph of the section, if any.
#toPeriod
The paragraph is expected to have initial text terminated by a period and whitespace (". "). The section's @@spectitle attribute is set to the value of the text up to but not including the period and whitespace. The text following the period is used as the first paragraph of the section, if any.
literal text
The text is used as the value of the section's @@spectitle attribute.
@@useContent
(Optional) Indicates whether all the paragraph's content should be used ("mixed"), only element content should be used ("elementsOnly"), or only the text content, with all text runs included by any mappings ignored ("textOnly"). The "textOnly" value is intended for use in generating attribute values, e.g., values for the @@value attribute of <data> elements. When the value is "elementsOnly", only text runs with character styles will be used in the result XML. All other content will be ignored. This is useful for extracting metadata fields from text content where the text itself is not needed in the XML (because it will be generated at rendition time, for example).
@@baseClass
(Optional) Specifies the DITA base class for the element to which the component is mapped, e.g. " topic/data ", " topic/author ", etc. This allows the transform to put the result element in the correct location, especially in topic prologs where elements can only occur in a specific place in the sequence of prolog elements. The value is as for the DITA @@class attribute, including leading and trailing whitespace. The values recognized are a function of the specific docx2dita transformation used. In general, values should be the most general DITA-defined classes, but extensions to the base transform may expect or recognize more specialized values. Only needs to be specified for elements that must occur in a specific place within a given topic zone in the result document.
@@putValueIn
(Optional) For components that map to <data> or a specialization of <data>, indicates where to put the data value: the @@value attribute ("valueAtt") or content ("content").
@@dataName
(Optional) For components that map to <data> or a specialization of <data>, the value to use for the @@name attribute. If not specified, the @@name attribute is not constructed in the result document.
@@format
(Required if the style will result in a new topic document) For paragraphs that result in a new topic document, specifies the name of an <output> element that defines the public and system identifier for the result document's document type declaration.
@@mapFormat
(Required if the style will result in a new map document) For paragraphs that result in a new map document, specifies the name of an <output> element that defines the public and system identifier for the result document's document type declaration.
@@chunk
(Optional) For paragraphs that generate maps or topicrefs, the value to set on the @@chunk attribute in the result, normally "to-content" (indicating that the result navigation branch should be result in a single output "chunk" (e.g., single HTML page).
@@topicDoc
(Optional) For paragraphs that generate new topics, when set to "yes", indicates that the topic should be output in its own document. When set to "yes", must also specify a value for @@format. Note that topic-creating paragraphs will also result in new documents if they also generate a topicref and the topic has no parent topic. When @@topicDoc is "yes" and the paragraph is not generating the root topic a topicref to the topic is also generated (which means the root paragraph must generate a map (in addition to a topic if it also generates a topic).
@@topicrefType
(Optional) For paragraphs that generate new documents and specify "yes" for @@topicDoc, indicates the element type to use for the reference to the generated topic in the result map. Defaults to "topicref".
@@topictitleType
(Optional) For paragraphs that generate topicrefs, topicheads, or topicgroups, indicates the element type to use for the navigation title element in the result map. Defaults to "navtitle".
@@topicheadType
(Optional) For paragraphs that generate topic heads (structure type of "topichead"), indicates the element type to use for the topichead in the result map. Defaults to "topichead".
@@topicgroupType
(Optional) For paragraphs that generate topic groups (structure type of "topicgroup"), indicates the element type to use for the topicgroup in the result map. Defaults to "topicgroup".
@@maprefType
(Optional) For paragraphs that generate map references (structure type of "map" or "mapTitle"), specifies the element type to use for the map reference. Defaults to "mapref". Note that for DITA bookmaps, the mapref type must be the same as the topicref type that would be used to refer to a topic at that location, e.g., "chapter", "part", or "topicref". When the generated topicref type does not set a default value of "ditamap" for the @format attribute, you must also specify the @@maprefFormat attribute to a value of "ditamap".
@@maprefFormat
(Optional) For paragraphs that generate map references, the value to specify on the @format attribute for the mapref element, normally "ditamap". Must be specified when the generated map reference element does not set "ditamap" as the default value for the @@format attribute.
@@initialSectionType
(Optional) For styles that map to topics, indicates the name of a specialization of topic/section to use to contain any paragraphs within the topic that occur before an expliclty-indicated section. If not specified, the topic will not have an initial section. Useful for topic types, such as reference and lcLearningContent, that require all topic body content to be within some form of section.
@@outputclass
(Optional) The @@outputclass value to use on the element directly generated from the incoming style (that is, the element specified by the @@tagName attribute).
@@topicOutputclass
(Optional) For styles that generate topics, indicates the @@outputclass value to use for the generated topic.
@@sectionType
(Optional) For styles that imply the creation of a containing section element, the element type to use.
@@useAsTitle
(Optional) For styles that map to a specialization of topic/section, indicates whether or not the paragraph content should be used as the section title. The default is "yes". If set to "yes", or unspecified, must set a value for @@tagName.
@@containerOutputclass
(Optional) For styles that imply the creation of a container element (e.g., list items), specifies the @@outputclass value for the container.
@@navtitleType
(Optional) For paragraphs that result in a <topicref> element, specifies the tag name to use for the topicref's navigation title element.
@@dlEntryType
(Optional) For paragraphs that generate definition lists, the element type for the definition list container. Defaults to "dl".
@@rootTopicrefType
For paragraphs that generate maps, specifies the element type for the root topicref element to use around all generated topicrefs within the map.
@@collection-type
(Optional) For paragraphs that generate topicrefs, the value to use for the DITA @collection-type attribute (e.g. "sequence").
@@processing-role
(Optional) For paragraphs that generate topicrefs, the value to use for the DITA @processing-role attribute. Use this to set the processing role to "resource-only" for topicref types that do not already specify a default of "resource-only".
@@idGenerator
For elements that should have an ID generated, the name of the ID generator to use. The default value is "default", where the default ID generator may be result element type specific (e.g., topics may have a different default ID generator than list items).

The set of available ID generators is determined by any local overrides used. The ID generator name is passed as a parameter to the apply-templates call for the mode "generate-id" applied to the incoming element.

Elements that DITA requires to have IDs will use the "default" ID generator by default, so it is not necessary to specify this attribute for elements that have a required ID except to change the ID generator (e.g., styles that map to topics).

For elements for which IDs are optional, specify this attribute with a value of "default" to get IDs using the default generator. Specify a different generator name to use that generator.

@@langAttValue
Specifies the value to use for the @@xml:lang attribute on the directly-generated element produced by the style-to-tag mapping.

When specified on <mapProperties> or <topicProperties> the value of @@langAttValue overrides the value of the w2d.language Ant parameter to set the language for the generated root or topic.

Within <paragraphStyle> and <characterStyle> you can use the <additionalAttributes> element to specify additional attributes to be set on the directly-generated element. For example, you can use it to set conditional attributes:
<paragraphStyle styleName="myPara"
  structureType="block"
  tagName="p"
  topicZone="body"
>
  <additionalAttributes>
    <attribute name="displayTarget" value="pdf"/>
    <attribute name="audience" value="learner"/>
  </additionalAttributes>
</paragraphStyle>
This style mapping will result in the attributes @@displayTarget and @@audience being set to the values "pdf" and "learner" respecitively on the generated <p> element:
<p displayTarget="pdf" audience="learner">...</p>