3cf9034c90
* Add titleize utility function. * Capitalizes first word. * Capitalizes all words not contained in simple article/conjunction list. * Enable shortcuts for `uppercase`, `lowercase`, and `titlecase`. * Fix header shortcuts * Ensure that header shortcuts do not duplicate text. * Make headers idempotent (pressing `ctrl+alt+1` then `ctrl+alt+2` does not make `# # # blah`.
18 lines
524 B
JavaScript
18 lines
524 B
JavaScript
var lowerWords = ['of', 'a', 'the', 'and', 'an', 'or', 'nor', 'but', 'is', 'if',
|
|
'then', 'else', 'when', 'at', 'from', 'by', 'on', 'off', 'for',
|
|
'in', 'out', 'over', 'to', 'into', 'with'];
|
|
|
|
function titleize(input) {
|
|
var words = input.split(' ').map(function (word, index) {
|
|
if (index === 0 || lowerWords.indexOf(word) === -1) {
|
|
word = Ember.String.capitalize(word);
|
|
}
|
|
|
|
return word;
|
|
});
|
|
|
|
return words.join(' ');
|
|
}
|
|
|
|
export default titleize;
|