Re: Zope digest, Vol 1 #662 - 54 msgs
srl <slandrum@turing.csc.smith.edu> wrote:
To: zope@zope.org Subject: [Zope] structured text
Hi all. I've read the Structured Text HOWTO but I'm still having trouble.
I have a DTML Dccument, stx_about that looks something like:
---- This is my document.
- bullet1 - Bullet2
-----
I'm including that in another DTML Document, about, that looks like:
----- <dtml-var standard_html_header>
<dtml-var stx_about fmt=structured-text>
<dtml-var standard_html_footer>
-----
but the text isn't coming out formatted. What am I missing? I've tried many different variants of formatting, with and without blank spaces inserted between different elements.
Please CC replies to me privately, as I'm not currently subscribed to the list. Thanks.
srl
StructuredText expects list elements to be separate "paragraphs", where the paragraph separator is an empty line. Also, the indentation determines whether the line before the list elements is treated as a header or as a paragraph. Try:: This is my document. - bullet1 - Bullet2 which makes the preceding line a paragraph, or:: Header Goes Here! - bullet1 - Bullet2 -- ========================================================= Tres Seaver tseaver@palladion.com 713-523-6582 Palladion Software http://www.palladion.com
participants (1)
-
Tres Seaver