Skip to content

Commit 8904f47

Browse files
Saransh-cppdarsnack
andcommitted
Fix relative paths of blog posts and tutorials
Co-authored-by: Kyle Daruwalla <[email protected]>
1 parent 128e022 commit 8904f47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using Dates
1414
dates[i] = isnothing(pubdate) ? Date(1999) : Date(pubdate, dateformat"d U Y")
1515
titles[i] = something(pagevar(url, :title), "Post $i")
1616
externallink = pagevar(url, :external)
17-
links[i] = isnothing(externallink) ? ("/" * url * "/") : externallink
17+
links[i] = isnothing(externallink) ? ("../" * url * "/") : externallink
1818
end
1919
perm = sortperm(dates, rev=true)
2020
io = IOBuffer()

0 commit comments

Comments
 (0)