Works fine with multiple lines: ``` >>> print(textile.textile('''Line1\nLine2''')) Line1 Line2 ``` But a blank line causes the contents to be textile-ized: ``` >>> print(textile.textile('''Line1\n\nLine2''')) Line1 Line2 ``` It looks like you can work around this by using `bc..`: ``` >>> print(textile.textile('''bc.. Line1\n\nLine2''')) Line1 Line2 ```