Can't touch #this

pull/7/head
vflyson 7 years ago
parent 05d90e6068
commit 3f499824f8

@ -11,6 +11,10 @@ module.exports = {
if (anchors[i].getAttribute('href')) {
var anchor = anchors[i]
var href = anchor.getAttribute('href').trim()
// Do not touch hrefs which start with a pound sign
if (href[0] == '#') continue
var absoluteURL = functions.resolve(absBasePath, href)
anchor.setAttribute('href', absoluteURL)

Loading…
Cancel
Save