Merge pull request #106 from webbuilders-group/anchor-links-fix

BUGFIX: Fixed incorrectly formed page specific anchor links (fixes #104)
This commit is contained in:
Daniel Hensby 2016-03-11 17:35:26 +00:00
commit 05741b1dcb
4 changed files with 15 additions and 1 deletions

View File

@ -482,6 +482,9 @@ class DocumentationParser
$fileBaseLink,
$url
);
} else if (preg_match('/^#/', $url)) {
// for relative links begining with a hash use the current page link
$relativeUrl = Controller::join_links($baselink, $page->getRelativeLink(), $url);
} else {
// Rewrite public URL
if (preg_match('/^\//', $url)) {

View File

@ -120,7 +120,7 @@
*
* Automatically adds anchor links to headings that have IDs
*/
var url = window.location.href;
var url = window.location.href.replace(/#[a-zA-Z0-9\-\_]*/g, '');
$("#content h1[id], #content h2[id], #content h3[id], #content h4[id], #content h5[id], #content h6[id]").each(function() {
var link = '<a class="heading-anchor-link" title="Link to this section" href="'+ url + '#' + $(this).attr('id') + '">&para;</a>';

View File

@ -197,6 +197,16 @@ HTML;
$result
);
$this->assertContains(
'[link: with anchor](dev/docs/en/documentationparsertest/2.4/test/#anchor)',
$result
);
$this->assertContains(
'[link: relative anchor](dev/docs/en/documentationparsertest/2.4/test/#relative-anchor)',
$result
);
$result = DocumentationParser::rewrite_relative_links(
$this->subPage->getMarkdown(),
$this->subPage

View File

@ -8,6 +8,7 @@ test
[link: subfolder page](subfolder/subpage)
[link: with anchor](/test#anchor)
[link: http](http://silverstripe.org)
[link: relative anchor](#relative-anchor)
`[Title](api:DataObject)`
`[Title](api:DataObject::$defaults)`