haskell / haddock

Haskell Documentation Tool
www.haskell.org/haddock/
BSD 2-Clause "Simplified" License
361 stars 243 forks source link

atSign has no unicode variant #1544

Closed int-index closed 1 year ago

int-index commented 1 year ago

Prior to this change, atSign was defined as follows:

atSign unicode = text (if unicode then "@" else "@")

Yes, this is the same symbol '\64' and not your font playing tricks on you. Now we define:

atSign = char '@'

Both the LaTeX and the Xhtml backend are updated accordingly.

Kleidukos commented 1 year ago

Thanks a lot!