Kendrick Wong
Kendrick Wong
I'm reopening this issue #138 . I'm suggesting a new option (`preserveSignificantWhitespace: true/false`) to preserve "Significant Whitespace" within XML element and attributes. (As shown by the green spaces in the...
Fixes [#478](https://github.com/prettier/plugin-xml/issues/478) Add new option `preserveSignificantWhitespace`, to preserve significant whitespace within XML elements. This PR should address all the cases where significant white space exists. Specifically: - spaces within string...
Fixes #312 The copyToClipboard function is not returning a promise currently. The intention (at least according to the function signature) is to fulfill the promise when the text is copied:...
The `copyToClipboard ` function is not returning a promise after copying text, see: ``` export default function App() { const [copiedText, copyToClipboard] = useCopyToClipboard(); return ( { copyToClipboard('text').then(() => {...