Deepak Bhatia
Deepak Bhatia

Reputation: 45

reltable is not working with dita open tool kit 3.0

I have created the file below. But it is giving me an error in dita open tool kit version 3.0.

{?xml version="1.0" encoding="UTF-8"?}
{!DOCTYPE map PUBLIC "-//OASIS//DTD DITA Map//EN" "map.dtd"}
{map id="ducks"}
 {title}Ducks{/title}

  {reltable}
  {relheader}
   {relcolspec type="concept"/}
   {relcolspec type="task"/}
   {relcolspec type="reference"/}
  {/relheader}
  {relrow}
   {relcell}{topicref href="c.dita"/}{/relcell}
   {relcell}{topicref href="t.dita"/}{/relcell}
   {relcell}{topicref href="r.dita"/}{/relcell}
  {/relrow}
 {/reltable}
{/map}

The files c.dita (concept), t.dita (task) or r.dita (reference) are available.

Regards

Deepak Bhatia

Upvotes: 1

Views: 105

Answers (1)

JulioV
JulioV

Reputation: 516

Is this the full map? If so, then the problem is you are missing the structure that generates the output. Add topicref elements to build the content sand it should work.

Upvotes: 3

Related Questions