Metadata-Version: 2.0
Name: JekPost
Version: 1.1.0
Summary: Package to ease the process of creating a new Jekyll post
Home-page: https://github.com/arjunkrishnababu96/jekpost
Author: Arjun Krishna Babu
Author-email: arjunkrishnababu96@gmail.com
License: LICENSE.txt
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Topic :: Utilities

JekPost
=========

A command-line utility to create a Jekyll posts file with appropriate filename and headers.


USAGE
=====

**Ensure that the directory where you installed JekPost is in your `$PATH`.**

To create a new Jekyll post:

::

  $ jekpost_create.py 'Post Title' dir

`dir` is the directory name where you wish to save the new post to, relative to the directory from which you run this command.
This is usually the `_posts` directory.

JekPost currently supports adding in an optional Disqus shortname. To create a post with support for Disqus comments:

::

  $ jekpost_create.py 'Post Title' dir --disqus 'your-disqus-shortname'


