-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix PEF preview: link to CSS and Javascript files instead of embedding
because the embedded way broke with the addition of '<' and '>' characters. Non of the following solutions work: * Wrapping the JS/CSS in <!-- --> tags worked locally but not in the web UI * I can wrap the JS/CSS in CDATA tags and disable the escaping of the JS/CSS using cdata-section-elements="html:script" on p:store, but I need // <![CDATA[ and /* <![CDATA[ */ * Inserting the CDATA tags and disabling the escaping of the JS/CSS could in theory be done with disable-output-escaping="yes" on xsl:text and xsl:value-of select="unparsed-text(...)", but it does not work.
- Loading branch information
Showing
3 changed files
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters