gitea/modules/markup
João Tiago e006451ab1
Fixes #27605: inline math blocks can't be preceeded/followed by alphanumerical characters (#30175)
- Inline math blocks couldn't be preceeded or succeeded by
alphanumerical characters due to changes introduced in PR #21171.
Removed the condition that caused this (precedingCharacter condition)
and added a new exit condition of the for-loop that checks if a specific
'$' was escaped using '\' so that the math expression can be rendered as
intended.
- Additionally this PR fixes another bug where math blocks of the type
'$xyz$abc$' where the dollar sign was not escaped by the user, generated
an error (shown in the screenshots below)
- Altered the tests to accomodate for the changes

Former behaviour (from try.gitea.io):

![image](https://github.com/go-gitea/gitea/assets/114936010/8f0cbb21-321d-451c-b871-c67a8e1e9235)

Fixed behaviour (from my local build):

![image](https://github.com/go-gitea/gitea/assets/114936010/5c22687c-6f11-4407-b5e7-c14b838bc20d)

(Edit) Source code for the README.md file:
```
$x$ -$x$ $x$-

a$xa$ $xa$a 1$xb$ $xb$1

$a a$b b$

a$b $a a$b b$

$a a\$b b$
```

---------

Signed-off-by: João Tiago <joao.leal.tintas@tecnico.ulisboa.pt>
Co-authored-by: Giteabot <teabot@gitea.io>
2024-04-02 18:15:40 +00:00
..
asciicast
common Make user-content-* consistent with github (#26388) 2023-08-09 09:30:31 +00:00
console
csv Fix some pending problems (#29985) 2024-03-22 19:17:30 +08:00
external Rework markup link rendering (#26745) 2024-01-15 08:49:24 +00:00
markdown Fixes #27605: inline math blocks can't be preceeded/followed by alphanumerical characters (#30175) 2024-04-02 18:15:40 +00:00
mdstripper
orgmode fix: rendering internal file links in org (#29669) 2024-03-10 18:30:14 +02:00
camo_test.go
camo.go
html_codepreview_test.go Render embedded code preview by permlink in markdown (#30234) 2024-04-02 17:48:27 +00:00
html_codepreview.go Render embedded code preview by permlink in markdown (#30234) 2024-04-02 17:48:27 +00:00
html_internal_test.go Use relative links for commits, mentions, and issues in markdown (#29427) 2024-03-13 10:34:58 +00:00
html_test.go Use relative links for commits, mentions, and issues in markdown (#29427) 2024-03-13 10:34:58 +00:00
html.go Render embedded code preview by permlink in markdown (#30234) 2024-04-02 17:48:27 +00:00
renderer_test.go
renderer.go Render embedded code preview by permlink in markdown (#30234) 2024-04-02 17:48:27 +00:00
sanitizer_test.go Use restricted sanitizer for repository description (#28141) 2023-11-23 16:34:25 +00:00
sanitizer.go Render embedded code preview by permlink in markdown (#30234) 2024-04-02 17:48:27 +00:00