Hi,
I have few Questions regarding the Template language and I would appreciate
your help.
*Alignment problem*:
I'm having lines aligned in the template like:
*2. t_${aaa}_k_t *i_${aaa}_k - input*
*3. t_${bbb}_t *o_${bbb}_r - output*
The output doesn't stay aligned and is dependant of the input length:
*2. t_XXXXXXX_k_t *i_XXXXXXX_k - input*
*3. t_YYY_t *o_YYY_r - output*
Is there a way to solve this issue?
*Alignment problem no. 2:*
* *
The new line problem:
I'm getting as an input a String which has a new line in the middle of it
like:
*Select * from user*
*Where user_name='aaa'*
In the template I have something like:
*The SQL is ${SQL}*
At a result I'm getting:
*The SQL is Select * from user*
*Where user_name='aaa'*
And I would like it to be:
*The SQL is Select * from user*
* Where user_name='aaa'*
How do I achieve this result?
*Convert line delimeters to Unix*:
Is there a way to make the output file have line delimiters of Unix and not
of Windows.
thanks a lot, Omer.