DITA Flashcards
(140 cards)
What does DITA stand for?
Darwin Information Typing Architecture
What file type organises dita topics?
Dita maps
What is the basic building block for DITA information?
The topic
What are the 3 basic DITA topic types?
Concept (what is?)
Task (how to?)
Reference (reference)
What are the 2 types of references most commonly used in DITA?
Key reference (product names, etc.) Content reference (warnings, notices, etc.)
Who created DITA and when?
IBM created DITA in 2005. It was donated to OASIS
What language is DITA based on?
XML
What provides additional information about a XML tag?
Attributes and its value
tag attribute=”value” /tag
Where are XML tags defined?
In a different file
What are called tag names in DITA?
Elements
What is the name of the 3 most common root tags in DITA?
Concept, task, reference
What is a necessary attribute for a topic tag?
id (ex: topic id=”sample”)
What element provides a 2-3 sentence summary of the topic content?
shortdesc
What element provides the title of a topic?
title
What element provides the bulk of information of a topic?
body
What are the two task types provided by DITA?
Strict task
General task
What is information about information called?
Metadata
What is a common attribute to include language of a topic?
xml:lang=”en-us”
Ex: topic id=”123” xml:lang=”en-us”
What element allows you to store metadata for the entire topic?
prolog
What is used to specify metadata on the element level?
attributes
On the map level, where do you specify the metadata of a referenced topic?
topicref
ex: topicref href=”abc.dita” audience=”novice”
What are the 3 default attribules that support filtering or conditional processing?
Audience
Product
Platform
What does a basic DITA topic require?
XML declaration (?xml version=”1.0” encoding=”UTF-8”?)
DOCTYPE declaration !DOCTYPE topic PUBLIC “-//OASIS//DTD DITA Topic//EN” “topic.dtd”
A topic topic id=”myfirsttopic”
id attribute on the topic id=”myfirsttopic”
Title title Hello world /title
What element lets you create notes, cautions, warnings, and other admonishments
note