Issue with file paths to specific resources
Posted: Wed Apr 03, 2024 4:59 pm
Hello,
I'm using Oxygen XML Editor version 26.0 and I've encountered a minor issue with the WebHelp Responsive transformation scenario.
In the HTML output, references to specific resources result in mixed paths (with both forward and backward slashes), which come up as broken links in my CI's HTML checker.
Examples of the elements that produce broken links in the output:
Interestingly, the only broken links are to the resources that I referenced in my publishing template:
Kind regards,
Konrad
I'm using Oxygen XML Editor version 26.0 and I've encountered a minor issue with the WebHelp Responsive transformation scenario.
In the HTML output, references to specific resources result in mixed paths (with both forward and backward slashes), which come up as broken links in my CI's HTML checker.
Examples of the elements that produce broken links in the output:
Code: Select all
<link rel="shortcut icon" href="../../oxygen-webhelp\template\resources/images/favicon.png"/><link rel="icon" href="../../oxygen-webhelp\template\resources/images/favicon.png"/>
Code: Select all
<img src="../../oxygen-webhelp\template\resources/images/logo.svg" alt="Back to home page"/>
Code: Select all
<resources>
<!-- Main CSS file -->
<css file="styles.css"/>
<!-- CSS for notes -->
<css file="notes.css"/>
<!--Logo-->
<logo
file="resources/images/logo.svg"
alt="Back to home page"/>
<!-- Favicon -->
<favicon file="resources/images/favicon.png"/>
<!--Custom JS-->
<fileset>
<include name="js/custom-collapsed-sections.js"/>
</fileset>
<!-- Images -->
<fileset>
<include name="resources/**/*"/>
<exclude name="resources/**/*.svn"/>
<exclude name="resources/**/*.git"/>
</fileset>
</resources>
Konrad