diff options
| author | Evan Silberman <[email protected]> | 2024-03-25 12:32:26 -0700 |
|---|---|---|
| committer | Evan Silberman <[email protected]> | 2024-09-02 11:09:10 -0700 |
| commit | c2ede57213b356a2c2ea2d9a89fb008b85ab8db1 (patch) | |
| tree | d120f10059b8d41673fae180856cfae45f0de227 /src | |
| parent | aabbda2fa29d032af2a3e2c62a5d790f8bfd0a69 (diff) | |
Underline links
Diffstat (limited to 'src')
| -rw-r--r-- | src/Text/Pandoc/Writers/ANSI.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/ANSI.hs b/src/Text/Pandoc/Writers/ANSI.hs index 0a26e5abe..975ec224c 100644 --- a/src/Text/Pandoc/Writers/ANSI.hs +++ b/src/Text/Pandoc/Writers/ANSI.hs @@ -268,7 +268,7 @@ inlineToANSI _ Space = return D.space inlineToANSI opts (Link (_, _, _) txt (src, _)) = do label <- inlineListToANSI opts txt - return $ D.fg D.cyan $ D.link src label + return $ D.underlined $ D.fg D.cyan $ D.link src label inlineToANSI opts (Image _ alt _) = do alt' <- inlineListToANSI opts alt |
