Disable angledQuotes per content page

Hi.

I have set this in the config.toml

[blackfriday]
plainIDAnchors = true
hrefTargetBlank = true
angledQuotes = true
smartypantsQuotesNBSP = true

I need to disable the translation from " to angledQuotes on specific page like

I have added “angledQuotes: false” in the frontmatter but this doesn’t prevent the translation

You should put it below blackfriday in front matter – there should be an example in the docs (if my memory is as good as it used to be).

Thanks.

the solution was this.

---
...
blackfriday:
  angledQuotes: false
  smartypantsQuotesNBSP: false
---
1 Like

Curious: Do you have smartypantsQuotesNBSP: true in site config? I thought that was a French thing.

Yes I have and yest it is a french thing but it looks nice, imho :wink:

1 Like