I don't think I was clear enough with my description.
I'm using the default auth.wiki as follows in the default controller:
def index():
return auth.wiki()
Then, in one of the pages I created using the wiki 'create page' I'm trying to get a carriage return displayed. I've tried all the think listed above, but can't get my address to format correctly.
I want:
John Doe
123 N Main St.
Anytown, WI 53888
When auth.wiki renders it on the page it shows up as:
John Doe 123 N Main St. Anytown, WI 53888
I can't get it to force a carriage return or new line.
I'm not running any python controller code to do anything.
-Jim