Carsten Dominik <[EMAIL PROTECTED]> writes:
> I have no opinion and no knowledge to decide this question - please
> work it out among yourselves and tell me what needs to be done.
>
> Thanks.
>
>>> How would that work without divs? The problem is (I think) that
>>> sometimes an org section is represented in html as a header plus
>>> following text:
>>>
>>> <h3>HEADER TEXT</h3>
>>> <p>BODY TEXT</p>
>>> <p>MORE BODY TEXT</p>
I thing this ^^^ is good but should have the category name as a class
like this:
<h3 class="work">
Header here
</h3>
<p class="work">
normal text
</p>
<p class="work">
some more text
</p>
<h3 class="school">
Header here
</h3>
<p class="school">
normal text
</p>
<p class="school">
some more text
</p>
Also a div should be optional for those who need it, so the whole
category can be wraped in a <div class="category"></div> like this:
<div class="work">
<h3 class="work">
Header here
</h3>
<p class="work">
normal text
</p>
<p class="work">
some more text
</p>
</div>
<div class="school">
<h3 class="school">
Header here
</h3>
<p class="school">
normal text
</p>
<p class="school">
some more text
</p>
</div>
Maybe by using a tag or something !
Cheers,
Cezar
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-orgmode