You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I reviewed the source code and I saw that you actually specify twice the input format for markdown.
See here: https://pandoc.org/MANUAL.html#general-options the -r and the -f are exactly the same thing
the -f is defined here
and the -r is defined here.
I have an issue with markdown documents that uses the straight accents. (like in: It**'**s time)
It converts by default (pandoc 2.0.6) to a curly accent, and does not display well in my browser
In order to isolate the issue I made command line:
Then I found out that in fact one need to use iconv like this:
I know you can hardly see the difference, but this accent is not the accent I want
So I want pandoc to produce:
<p>'</p>
I can do that by:
So in order to do that I need to specify the
smart
extension for importing the markdown.I do that in my
conf.py
file:But it does not have any effect....
The text was updated successfully, but these errors were encountered: