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
correctly puts opening and closing quotation marks:
``abc def''
Whereas having an ellipsis at the beginning of the quote
Kramdown::Document.new('"...abc def"').to_latex
gives two closing quotation marks
''\\ldots{}abc def''
Behavior is the same for HTML and LaTeX output. It's not a big issue, but having an ellipsis at the beginning of a quotation is quite common in typesetting.
The text was updated successfully, but these errors were encountered:
The smart quote feature in kramdown is certainly not complete and getting this right in general is a really hard problem. If I were to create kramdown now I would probably leave the smart quotes out completely.
However, I think that in this case it would a) be easy to add and b) pose no compatibility problems - I will have a look.
I have added some code to allow the requested behavior. However, I'm not entirely sure if the change has any side effects but I don't think so. The test suite still passes but that is not a 100% verification.
This
correctly puts opening and closing quotation marks:
Whereas having an ellipsis at the beginning of the quote
gives two closing quotation marks
Behavior is the same for HTML and LaTeX output. It's not a big issue, but having an ellipsis at the beginning of a quotation is quite common in typesetting.
The text was updated successfully, but these errors were encountered: