$ cnpm install title
This package correctly capitalizes your titles as per The Chicago Manual of Style.
Install the package:
pnpm add title
Then, import it and convert any input text:
import title from 'title'
title('tHe cHicaGo maNual oF StyLe')
// Will result in:
// "The Chicago Manual of Style"
You can pass words that should be capitalized as specified:
title('FaCEbook is great', {
special: [ 'facebook' ]
})
// Will result in:
// "facebook is great"
You can also convert titles in the command line. Install the package globally:
pnpm add -g title
Next, run it:
title "tHe cHicaGo maNual oF StyLe"
# Will result in:
# "The Chicago Manual of Style"
To see all available options, run:
title -h
title if it's already installed: pnpm remove -g titlepnpm linkAfter that, you can use the title command everywhere.
Copyright 2013 - present © cnpmjs.org | Home |