fix: homepage link

This commit is contained in:
qingwei.li
2018-02-11 22:22:06 +08:00
committed by cinwell.li
parent 033be4f2d7
commit e097f88f0e
2 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ export class Compiler {
!_self.matchNotCompileLink(href) &&
!config.ignore
) {
if (href === _self.config.homepage) href = '/'
if (href === _self.config.homepage) href = 'README'
href = router.toURL(href, null, router.getCurrentPath())
} else {
attrs += ` target="${linkTarget}"`
+1 -3
View File
@@ -35,9 +35,7 @@ export class History {
return this.config.basePath
}
getFile (path, isRelative) {
path = path || this.getCurrentPath()
getFile (path = this.getCurrentPath(), isRelative) {
const { config } = this
const base = this.getBasePath()
const ext = typeof config.ext !== 'string' ? '.md' : config.ext