File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Bugfixes:
12
12
13
13
Other improvements:
14
14
- Update package set to ` psc-0.14.5-20211111 ` (#260 by @JordanMartinez )
15
+ - Fix double-encoding of quotation marks (#261 by @rhendric )
15
16
16
17
## [ v2021-11-11.1] ( https://github.com/purescript/trypurescript/releases/tag/v2021-11-11.1 )
17
18
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ encode :: String -> String
30
30
encode =
31
31
replaceAll (Pattern " <" ) (Replacement " <" )
32
32
<<< replaceAll (Pattern " >" ) (Replacement " >" )
33
- <<< replaceAll (Pattern " &" ) (Replacement " &" )
34
33
<<< replaceAll (Pattern " \" " ) (Replacement " "" )
34
+ <<< replaceAll (Pattern " &" ) (Replacement " &" ) -- must be replaced before all the others!
35
35
36
36
foreign import withConsoleImpl
37
37
:: forall a
You can’t perform that action at this time.
0 commit comments