-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Open
Labels
type:bugThis issue reports a buggy (incorrect) behavior.This issue reports a buggy (incorrect) behavior.
Description
In my configuration, I opt for disabling quotes transformations and using the suggest format from the official documentation here:
My configuration below:
typing: {
transformations: {
include:[],
remove:['quotes', 'typography'],
extra: [
{
from: /(^|\s)(")([^"]*)(")$/,
to: [ null, '“', null, '”' ]
}
]
}
}
This does not disable the quotes transformations "normal quotes to smart/curly quotes vs just using the smart/curly quotes consistently" and there is unwanted behavior where backspacing undoes the transformation.
I have attempted to use remove and several other types of regex. Nothing is working and I am seriously concerned about the inability to simply map quote type, without additiona transformations or baggage.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
type:bugThis issue reports a buggy (incorrect) behavior.This issue reports a buggy (incorrect) behavior.