diff options
author | John MacFarlane <jgm@berkeley.edu> | 2013-08-14 11:48:04 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2013-08-14 11:48:04 -0700 |
commit | 96c2d542977e5cc510f315aad7c2ee357fe988c9 (patch) | |
tree | 3504b8c875f107ec4c03fbba03f48b39a380cb6c /scripts/caps.py | |
parent | f6b5735d095dcfe2b0ef4aab02ff85acb47140c6 (diff) | |
download | pandoc-96c2d542977e5cc510f315aad7c2ee357fe988c9.tar.gz |
Commented python modules/sample scripts.
Diffstat (limited to 'scripts/caps.py')
-rwxr-xr-x | scripts/caps.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/caps.py b/scripts/caps.py index 3ab8bc7a3..e29d48854 100755 --- a/scripts/caps.py +++ b/scripts/caps.py @@ -1,4 +1,9 @@ #!/usr/bin/env python + +"""Pandoc filter to convert all regular text to uppercase. +Code, link URLs, etc. are not affected. +""" + from pandoc import toJSONFilter def caps(key, value, format): |