Skip to content

Instantly share code, notes, and snippets.

@tayiorbeii
Created October 14, 2022 15:12
Show Gist options
  • Save tayiorbeii/e17bea27cd28b3eafb4823e05827b377 to your computer and use it in GitHub Desktop.
Save tayiorbeii/e17bea27cd28b3eafb4823e05827b377 to your computer and use it in GitHub Desktop.
import "@johnlindquist/kit"
// Name:
let outdent = await npm('tiny-dedent')
let replaceAll = await npm('just-replace-all')
let chunkArray = await npm('chunk')
let text = await paste()
let outdentedTextLines = text.split('\n')
let paragraphsArray = chunkArray(outdentedTextLines, 4)
let paragraphs = replaceAll(paragraphsArray.map(x => x.join('.')).join('\n\n\n'), '..', '. ')
await copy(paragraphs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment