Bug 746109

Summary: Can't use <section> in topics
Product: [Community] PressGang CCMS Reporter: Misty Stanley-Jones <misty>
Component: Web-UIAssignee: Matthew Casperson <mcaspers>
Status: CLOSED NOTABUG QA Contact:
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 1.xCC: cbredesen, lcarlon, topic-tool-list
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2011-10-16 22:26:10 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Misty Stanley-Jones 2011-10-13 21:59:45 UTC
Because of the way the footer information on topics is generated, we can't use <section> inside long topics. It may be that this is just a rule, or it may be that the stuff at the bottom should be wrapped in a <section>. The problem is that once you have a <section>, you can't have anything else at its level but other sections. So you can't have like this:

<section>
  <para>

  </para>

  <section>

  </section>

  <itemizedlist>

  </itemizedlist>
</section>

But you can have:

<section>
  <para>

  </para>

  <section>

  </section>
  <section>
    <itemizedlist>

    </itemizedlist>
  </section>
</section>

Comment 1 Matthew Casperson 2011-10-16 22:26:10 UTC
This is a limitation of topics thanks to the publican chunks sections. Topics need to be a section that does not contain any other sections.