PDA

View Full Version : Parser Formatting



takhtar
October 30th, 2010, 19:31
Good day to all;
Is there a way to do line feeds instead of paragraphs for text that needs to start at the beginning of a line?

I have been using:
<p>text</p>
<p>text 2</p>
winds up looking like:
text

text2

I would like it look like the following with out any line spacing:
text
text 2

A list wouldn't work in my situation because it indents and adds bullets.

Tan

Griogre
October 30th, 2010, 23:38
If the text is inside a formatted text control you can try \r between the text in a paragraph.

takhtar
October 31st, 2010, 21:39
That did not work. I tried \r, /r, <r></r>, <r><\r>. There must be a way! If you have any other ideas please let me know.

Thanks
Tan

Sorcerer
October 31st, 2010, 21:54
I've never used the parser, but the tags you are using are html/xml
so maybe this will work - at least its what I do to get the same effect in xml modules.

create a table with only one entry per line. They sit right under each other with no paragraph spacing.

<table>
<tr><td>Text1</td></tr>
<tr><td>Text2</td></tr>
</table>

takhtar
November 1st, 2010, 02:48
Sweet, that might just do the trick.

Thanks
Tan