-
So... I'm learning to use a TUI email client called aerc and when it views html emails (which is most emails), it converts them to plaintext using pandoc and displays them in the terminal. My issue is that Links are erased from the plaintext when wrapped in a So for example, if the raw HTML says
the plaintext should say
and at the bottom it should have
How do I get pandoc to render like this? |
Beta Was this translation helpful? Give feedback.
Answered by
jgm
Mar 6, 2025
Replies: 2 comments
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
relma2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pandoc -f html -t markdown --reference-links
should do this.