diff options
author | Earl Warren <109468362+earl-warren@users.noreply.github.com> | 2023-08-07 15:11:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-07 15:11:25 +0200 |
commit | 87f70979cfe2ba8662b12b688f020b7732741de0 (patch) | |
tree | 39f334980866ef558f675c9311667bdcf806f11f /modules/markup/html_test.go | |
parent | e4b1ea6f15790b3ce918a29404f93353d7143a1c (diff) | |
download | gitea-87f70979cfe2ba8662b12b688f020b7732741de0.tar.gz gitea-87f70979cfe2ba8662b12b688f020b7732741de0.zip |
Do not highlight `#number` in documents (#26365)
- Currently the post processing will transform all issue indexes (such as `#6`) into a clickable link.
- This makes sense in an situation like issues or PRs,
where referencing to other issues is quite common
and only referencing their issue index is an handy and efficient way to do it.
- Currently this is also run for documents
(which is the user profile and viewing rendered files),
but in those situations it's less common to reference issues by their index and instead could mean something else.
- This patch disables this post processing for issue index for documents. Matches Github's behavior.
- Added unit tests.
- Resolves https://codeberg.org/Codeberg/Community/issues/1120
Co-authored-by: Gusted <postmaster@gusted.xyz>
Diffstat (limited to 'modules/markup/html_test.go')
-rw-r--r-- | modules/markup/html_test.go | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/modules/markup/html_test.go b/modules/markup/html_test.go index a8d7ba7948..9156bc6331 100644 --- a/modules/markup/html_test.go +++ b/modules/markup/html_test.go @@ -529,6 +529,42 @@ func Test_ParseClusterFuzz(t *testing.T) { assert.NotContains(t, res.String(), "<html") } +func TestPostProcess_RenderDocument(t *testing.T) { + setting.AppURL = TestAppURL + + localMetas := map[string]string{ + "user": "go-gitea", + "repo": "gitea", + "mode": "document", + } + + test := func(input, expected string) { + var res strings.Builder + err := PostProcess(&RenderContext{ + Ctx: git.DefaultContext, + URLPrefix: "https://example.com", + Metas: localMetas, + }, strings.NewReader(input), &res) + assert.NoError(t, err) + assert.Equal(t, strings.TrimSpace(expected), strings.TrimSpace(res.String())) + } + + // Issue index shouldn't be post processing in an document. + test( + "#1", + "#1") + + // Test that other post processing still works. + test( + ":gitea:", + `<span class="emoji" aria-label="gitea"><img alt=":gitea:" src="`+setting.StaticURLPrefix+`/assets/img/emoji/gitea.png"/></span>`) + test( + "Some text with 😄 in the middle", + `Some text with <span class="emoji" aria-label="grinning face with smiling eyes">😄</span> in the middle`) + test("http://localhost:3000/person/repo/issues/4#issuecomment-1234", + `<a href="http://localhost:3000/person/repo/issues/4#issuecomment-1234" class="ref-issue">person/repo#4 (comment)</a>`) +} + func TestIssue16020(t *testing.T) { setting.AppURL = TestAppURL |