Hi there.
I managed to setup a documentation wiki for my workteam and I'm making an automation script to export mainframe procedures as text and import them on wiki as pages.
The problem here is that I have a text file with line breaks that the ImportTextFiles is not respecting at all.
They import as plain text which breaks the entire proc format.
This:
<code>
//CRMP301D JOB (CRM),'INTERFACE-CRM',MSGLEVEL=(1,1),REGION=6M,
// MSGCLASS=X,TIME=999,LINES=999,CLASS=P
//*
//* %%SET %%DAT = %%ODAY.%%OMONTH.%%OYEAR
//* %%SET %%H = %%TIME
//*
</code>
Becomes this:
<code>
//CRMP301D JOB (CRM),'INTERFACE-CRM',MSGLEVEL=(1,1),REGION=6M, // MSGCLASS=X,TIME=999,LINES=999,CLASS=P //* //* %%SET %%DAT = %%ODAY.%%OMONTH.%%OYEAR //* %%SET %%H = %%TIME //*
</code>