-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKG-INFO
45 lines (34 loc) · 1.33 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Metadata-Version: 1.0
Name: titlecase
Version: 0.5.1
Summary: Python Port of John Gruber's titlecase.pl
Home-page: http://muffinresearch.co.uk/
Author: Stuart Colville
Author-email: [email protected]
License: MIT
Description: =========
Titlecase
=========
Titlecase is a port of John Gruber's titlecase.pl
http://daringfireball.net/2008/05/title_case
This filter changes all words to Title Caps, and attempts to be clever
about *un*\capitalizing SMALL words like a/an/the in the input.
The list of "SMALL words" which are not capped comes from
the New York Times Manual of Style, plus 'vs' and 'v'.
Usage
=====
To use it is as simple as:
>>> from titlecase import titlecase
>>> titlecase('a thing')
'A Thing'
Bugs/Patches/Contributions
==========================
See https://launchpad.net/titlecase.py
Keywords: string formatting
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Text Processing :: Filters