Code a tabulation in XSLT

dbourrion -  
chalumea Posted messages 9 Status Member -
Hello. I’m looking to convert an XML file to a flat *.txt, with a tabulation as separator. I’ve got everything, my XSLT stylesheet and all, it works. My only difficulty: the encoding of the tabulation, which I must introduce here: <param name="séparateur" select=" ' TAB' " /> instead of TAB. I can’t figure out how to encode this tab. Could someone help? I’ve tried with \t or 09 (I think that’s the ASCII code for tab) but these elements are then reproduced as-is in the result file. Thanks for your help.

Configuration: Windows XP Firefox 2.0.0.14

3 answers

  1. Marco la baraque Posted messages 1030 Status Contributor 329
     
    Good evening,
    In principle, you should use:
    &#09;


    Best regards
    0
  2. chalumea Posted messages 9 Status Member 2
     
    Do you have the equivalent in XSL-FO? that is, for a PDF output?

    Thank you
    0