forgejo/modules/markup
Giteabot 39bc868092
Fixes #27605: inline math blocks can't be preceeded/followed by alphanumerical characters (#30175) (#30251)
Backport #30175 by @jmlt2002

- 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: João Tiago <114936010+jmlt2002@users.noreply.github.com>
(cherry picked from commit ac65aeecbd42ed30cc0838b3fad12b58daadf3ad)
2024-04-08 11:49:51 +02:00
..
asciicast
common
console
csv Fix some pending problems (#29985) 2024-03-26 19:04:26 +01:00
external
markdown Fixes #27605: inline math blocks can't be preceeded/followed by alphanumerical characters (#30175) (#30251) 2024-04-08 11:49:51 +02:00
mdstripper
orgmode
tests/repo/repo1_filepreview [v7.0/forgejo] Render inline file permalinks 2024-04-01 16:15:58 +02:00
camo.go
camo_test.go
file_preview.go [v7.0/forgejo] Render inline file permalinks 2024-04-01 16:15:58 +02:00
html.go [BUG] Fix crash in issue forms 2024-04-04 16:57:55 +00:00
html_internal_test.go
html_test.go [v7.0/forgejo] Render inline file permalinks 2024-04-01 16:15:58 +02:00
renderer.go [v7.0/forgejo] Render inline file permalinks 2024-04-01 16:15:58 +02:00
renderer_test.go
sanitizer.go [BUG] Center icon and callout text 2024-04-04 12:18:32 +00:00
sanitizer_test.go