Hi
I have a website and documentation written in XIL and formerly
generated into HTML using version 2. I just upgraded to version 3 and
I'm getting funny behavior with some of my pages that have headings
(h1, h2, etc.).
The issue is that Paragraph 1 gets style h1, rather than paragraph
(which should be the default.
h1. First h1
h2. First h2
Paragraph 1
h2. Second h2
Paragraph 2
partial output
<h1>First h1</h1>
<h2>First h2</h2>
<h1>Paragraph 1</h1>
<h2>Second h2</h2>
<p>Paragraph 2</p>
If I add an explicit p. signature before "Paragraph 1", then
"Paragraph 2" is made h1!
h1. First h1
h2. First h2
p. Paragraph 1
h2. Second h2
Paragraph 2
<h1>First h1</h1>
<h2>First h2</h2>
<p>Paragraph 1</p>
<h2>Second h2</h2>
<h1>Paragraph 2</h1>
This is a problem, since I would need to add p. signatured everywhere.
I'm hoping there was just some syntax change than I'm missing.
Generated with Xilize 3.0.3_31 beta in jEdit.
TIA!
Patrick
|