How to write well indented code with text on multiline?
With a code like this for an PythonPart Interface:
<Parameter>
<Name>InfoPictureTest</Name>
<Text>A text
on
severals
lines
</Text>
<TextId>1000</TextId>
<Value>AllplanSettings.PictResPalette.eHotinfo</Value>
<ValueType>Picture</ValueType>
</Parameter>I see in AllPlan :
"A text
on
severals
lines"I know that I can use ASCII character like this to get the good result:
<Text>A text on severals lines</Text>
But, for looooooooong text, this isn't readable.
Is it possible to write something like this using \n character for new lines?
<Parameter>
<Name>InfoPictureTest</Name>
<Text Value="A text
\non
\nseverals
\nlines"/>
<TextId>1000</TextId>
<Value>AllplanSettings.PictResPalette.eHotinfo</Value>
<ValueType>Picture</ValueType>
</Parameter>With bad indented text I can't collapse/uncollapse properly my interface's code which is annoying...

