default --output to content

Currrently the default output folder is output, and this conflicts with the usage of the output folder as the output from pelican. Instead the imported posts should go into the content folder.
This commit is contained in:
Patrick 2016-01-18 20:09:00 -08:00
commit b61b0f58d4

View file

@ -789,9 +789,9 @@ def main():
parser.add_argument(
'-o', '--output', dest='output', default='output',
help='Output path')
parser.add_argument(
'-m', '--markup', dest='markup', default='rst',
help='Output markup format (supports rst & markdown)')
parser.add_argument('-o', '--output', dest='output', default='content',
help=('Where to output the generated markup files. If not specified, a '
'directory will be created, named "content" in the current path.'))
parser.add_argument(
'--dir-cat', action='store_true', dest='dircat',
help='Put files in directories with categories name')