MadCap:concept tag caused blank page

This forum is for all Flare issues not related to any of the other categories.
Post Reply
spanchal
Jr. Propeller Head
Posts: 3
Joined: Wed Jun 22, 2016 7:45 am

MadCap:concept tag caused blank page

Post by spanchal »

Just to share a problem i had and its resolution...

My PDF output had many blank pages in it. To enable filtering in the web help output, i had added MadCap:concept tags within the body of pages, for example:

Code: Select all

<html ....>
<body>
<h1 ....>
<p ....>
<MadCap:concept term="Definitions" />
</body>
</html>
It turned out that the blank pages occurred because the MadCap:concept tag was directly in the body. After a process of elimination of various possible causes, I found that putting the MadCap:concept tag in a div tag solved the problem:

Code: Select all

<html ....>
<body>
<h1 ....>
<p ....>
<div><MadCap:concept term="Definitions" /></div>
</body>
</html>
aevansb
Propeller Head
Posts: 10
Joined: Tue Mar 11, 2014 12:50 pm

Re: MadCap:concept tag caused blank page

Post by aevansb »

Is there a way to mass assign concepts to topic? I've dragging and dropping to the Concept window, but it's only letting me drag one topic at a time.
Adam Evans in Chicago
Sr Technical Documentation Manager at Strata Decision Technology
Post Reply