Skip to content

Commit

Permalink
fix(docs): "Edit this page" URLs to correctly point to GitHub reposit…
Browse files Browse the repository at this point in the history
…ory structure (#5289)

* fix edit post link

Signed-off-by: The Anh Nguyen <[email protected]>

* add condition to check gh_subdir & language

Signed-off-by: The Anh Nguyen <[email protected]>

* remove _index.md condition

Signed-off-by: The Anh Nguyen <[email protected]>

---------

Signed-off-by: The Anh Nguyen <[email protected]>
  • Loading branch information
ntheanh201 authored Oct 23, 2024
1 parent db18917 commit c265522
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions docs/layouts/partials/page-meta-links.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
{{ if .Path }}
{{ $pathFormatted := replace .Path "\\" "/" }}
{{ $gh_repo := ($.Param "github_repo") }}
{{ $gh_subdir := ($.Param "github_subdir") }}
{{ $gh_project_repo := ($.Param "github_project_repo") }}
{{ $gh_branch := (default "master" ($.Param "github_branch")) }}
{{ if $gh_repo }}
<div class="td-page-meta ml-2 pb-1 pt-2 mb-0">
{{ $editURL := printf "%s/edit/%s/content/%s" $gh_repo $gh_branch $pathFormatted }}
{{ if and ($gh_subdir) (.Site.Language.Lang) }}
{{ $editURL = printf "%s/edit/%s/%s/content/%s/%s" $gh_repo $gh_branch $gh_subdir ($.Site.Language.Lang) $pathFormatted }}
{{ else if .Site.Language.Lang }}
{{ $editURL = printf "%s/edit/%s/content/%s/%s" $gh_repo $gh_branch ($.Site.Language.Lang) $pathFormatted }}
{{ else if $gh_subdir }}
{{ $editURL = printf "%s/edit/%s/%s/content/%s" $gh_repo $gh_branch $gh_subdir $pathFormatted }}
{{ $editURL := printf "%s/edit/%s" $gh_repo $gh_branch }}
{{ if .File }}
{{ if .File.LogicalName }}
{{ if $gh_subdir }}
{{ $editURL = printf "%s/%s" $editURL $gh_subdir }}
{{ end }}
{{ $editURL = printf "%s/content" $editURL }}
{{ if .Site.Language.Lang }}
{{ $editURL = printf "%s/%s" $editURL .Site.Language.Lang }}
{{ end }}
{{ $editURL = printf "%s/%s" $editURL .File.Path }}
{{ end }}
{{ end }}

{{ $issuesURL := printf "%s/issues/new?title=%s" $gh_repo (htmlEscape $.Title )}}
<a href="{{ $editURL }}" target="_blank" rel="noreferrer"><i class="fa fa-edit fa-fw"></i> {{ T "post_edit_this" }}</a>
<a href="{{ $issuesURL }}" target="_blank" rel="noreferrer"><i class="fab fa-github fa-fw"></i> {{ T "post_create_issue" }}</a>
Expand Down

0 comments on commit c265522

Please sign in to comment.