Search results

DITA: Variables

DITA doesn't have an actual variables element, but you can use keyref to accomplish the same thing.

A variable is a symbol that represents something else. You might use the variable product_name so that if you're product name switches, you don't have to update all instances of the product name in your documentation. You can just update what the variable product_name points to.

In your map file, add the following:
  <keydef keys="product_name">
   <topicmeta>
    <keywords>
     <keyword>ACME</keyword>
    </keywords>
   </topicmeta>
  </keydef>
In your topic file, reference the variable with the following:
Congratulations on the purchase of <keyword keyref="product_name"/>. 
You can event put attributes on the keyword so that different product names appear based on different conditional processing.

 <keydef keys="product_name">
   <topicmeta>
    <keywords>
     <keyword audience="UK">ACME</keyword>
     <keyword audience="USA">Gizmo</keyword>
    </keywords>
   </topicmeta>
  </keydef>

About Tom Johnson

Tom Johnson

I'm an API technical writer based in the Seattle area. On this blog, I write about topics related to technical writing and communication — such as software documentation, API documentation, AI, information architecture, content strategy, writing processes, plain language, tech comm careers, and more. Check out my API documentation course if you're looking for more info about documenting APIs. Or see my posts on AI and AI course section for more on the latest in AI and tech comm.

If you're a technical writer and want to keep on top of the latest trends in the tech comm, be sure to subscribe to email updates below. You can also learn more about me or contact me. Finally, note that the opinions I express on my blog are my own points of view, not that of my employer.