Applying curly quotes to your web page.
npm install curlyquotes   
Dynamically apply smart curly quotes to your web page.
``bash`
yarn add curlyquotes
`javascript`
import * as curlyquotes from "curlyquotes"
curlyquotes.observe()
The code snippet above will detect all straight quotes and convert them to
smart versions, and will continue to observe changes in the DOM tree
and apply the changes.
Notes:
The following three DOM methods of curlyquotes accept an optional Node, whichdocument.body
falls back to if omitted.
`typescriptrootNode
/**
* Recursively walk through and convert all child nodes
* of .
*/
export function init(rootNode?: Node): void
/* Starts observing the node. /
export function observe(node?: Node): void
/* Stops all observations started by observe to node. /
export function disconnect(node?: Node): void
/* Provide a CSS selector used to ignore matched nodes. /
export function ignore(selector: string): void
/* Returns a new string with smartquotes applied. /
export function string(source: string): string
``
The latest three versions of all evergreen browsers.