XSL with NotesXSLTransformer

hi all,

I am using NotesXSLTransformer to export some NotesDocs as HTML-files.

I would like the HTML-files to link to an external stylesheet rather than applying styles while transforming. IMO this adds a little more flexibility to users who get the files (they can customize the external stylesheet (css) for their needs.

the problem is that transforming fails if I try to use a statement like the following in my xsl-file: i.e. <link rel"stylesheet" href=“formats.css”>

I also tried this with CDATA surrounded. doing so causes the parser to ignore the statement but then it’s not recognized as an instruction to the browser and written as plain text.

any ideas how to handle this?

tom

Subject: XSL with NotesXSLTransformer

I assume the missing = after rel is typing error but also the tag is not terminated. Not sure if type is needed

Subject: RE: XSL with NotesXSLTransformer

The tag was not terminated. Thanx very much!My fault! The original string had a =.

cheers

tom

works really fine now!!!