blob: 19925a4f2f93c16b4ec0ab6201c66b3f52e4a934 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{-# LANGUAGE Haskell2010 #-}
module Unicode2 where
-- | All of the following work with a unicode character ü:
--
-- * an italicized /ü/
--
-- * inline code @ü@
--
-- * a code block:
--
-- > ü
--
-- * a url <https://www.google.com/search?q=ü>
--
-- * a link to 'ü'
--
ü :: ()
ü = ()
|