Numbering for WebHelp Responsive
Posted: Fri Nov 04, 2022 10:51 am
Hi,
I'm currently trying to generate a webhelp for our docs using Oxygen XML Editor 22.1.
Here I have these two questions:
First one, I want the topics from the second level on to be numbered, and the numbering reset for every second level topic. Just like what I drew in the capture. I find a parameter args.css.param.numbering in dita to PDF Transformation Parameters to control this, but no similar parameter for WebHelp Responsive. Is there any existing solution to do this?
The second, I want the right toc (topic toc) to show every step for a task, just like this example of the Oxygen Feeback official documentation: https://www.oxygenxml.com/doc/versions/ ... df_gmz_mmb
I wonder how you achieve this, because it seems the topic toc can only show the links of <section>, but the <section> element cannot be inserted in a task topic.
The only way I think can achieve this is to use a concept topic, and do as follows
But this requires entering the step number manually, not generated automatically like using <steps> or <ol>. Is there other way to do this?
I'm currently trying to generate a webhelp for our docs using Oxygen XML Editor 22.1.
Here I have these two questions:
First one, I want the topics from the second level on to be numbered, and the numbering reset for every second level topic. Just like what I drew in the capture. I find a parameter args.css.param.numbering in dita to PDF Transformation Parameters to control this, but no similar parameter for WebHelp Responsive. Is there any existing solution to do this?
The second, I want the right toc (topic toc) to show every step for a task, just like this example of the Oxygen Feeback official documentation: https://www.oxygenxml.com/doc/versions/ ... df_gmz_mmb
I wonder how you achieve this, because it seems the topic toc can only show the links of <section>, but the <section> element cannot be inserted in a task topic.
The only way I think can achieve this is to use a concept topic, and do as follows
Code: Select all
<section id="section_id1">
<title>1. Do XXX</title>
</section>
<section id="section_id2">
<title>2. Check XXX</title>
</section>