My double quotes are being converted into the « character:
Here’s an example
This is "some quoted text".
Output:
This is «some quoted text».
I have languageCode = "en-us"
in my config.toml.
What’s going on here?
My double quotes are being converted into the « character:
Here’s an example
This is "some quoted text".
Output:
This is «some quoted text».
I have languageCode = "en-us"
in my config.toml.
What’s going on here?
Check your blackfriday config.
That did it. Had to set angledQuotes = false
in config.toml’s [blackfriday] section.
Thanks!