split html files not updating links
Hi, i need to split a bunch of html files/pages and theyve all got internal links, but the links arent always updated to match the new split names
by default with a file called one.html, internal links might look like
<a href="one.html#L1">1</a>
<a href="one.html#L2">2</a>
when split, the second file will be renamed one_split1.html, and if split between the two links, the second link should be automatically renamed like
<a href="one.html#L1">1</a>
<a href="one_split1.html#L2">2</a>
but finding links arent always being renamed, so looks glitchy
is this a known bug?
Last edited by ni_c; 11-23-2015 at 06:02 AM.
|