-
DescriptionI understand from previous discussions #10511 that the conversion of vertical quotation marks to curly quotation marks is handled by the pandoc smart extension, but I haven't found a way to disable that behaviour. I see in this discussion that it may have something to do with a
This produces unexpected results: eg. empty listing page, loss of header navigation elements and search on individual pages. Is there a way to either disable the quotation conversion or disable the smart plugin while retaining the other style elements? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
Here is what you did is actually disabling: https://pandoc.org/chunkedhtml-demo/7.1-typography.html
Unfortunately without any small reproducible example there is no way for us to help you more. Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? The goal is to make it as easy as possible for us to recreate your problem so that we can fix it: please help us help you! Thanks. You can share a self-contained "working" (reproducible) Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four If you have multiple files (and if it is absolutely required to have multiple files), please share as a Git repository.
Additionally and if not already given, please share the output of |
Beta Was this translation helpful? Give feedback.
-
While we're talking about it, it appears this solution does not apply to the title of the page. $ cat index.qmd
---
title: This title contains "quotation marks"
from: markdown-smart
---
"This is a Quarto website."
To learn more about Quarto websites visit <https://quarto.org/docs/websites>.
$ cat _quarto.qmd
project:
type: website
website:
title: "."
navbar:
left:
- href: index.qmd
text: Home
- about.qmd
format:
html:
from: markdown-smart
theme: cosmo
css: styles.css
toc: true |
Beta Was this translation helpful? Give feedback.
I just recall, but
variant
applies to output.You want smart to not be applied to the input, so you need
from
.Note that these comes directly from Pandoc.