-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_article.py
executable file
·51 lines (39 loc) · 1.05 KB
/
create_article.py
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
46
47
48
49
50
#!/usr/bin/env python
import os
from jinja2 import Template
template = """Title: {{ title }}
Date: {{ date }}
Category: {{ category }}
Slug: {{ slug }}
Tags: {{ tags}}
Lang: {{ lang }}
Some initial paragraph. Make sure this is not too long so it can fit in the
landing page
## Some topic?
A topic to talk about
## Some code example
```python
import os
path = "content/articles/{}".format(date)
if not os.path.exists(path):
os.makedirs(path)
print(path)
```
## This is how to include a image

*My workstation in Canada (2014/2015)*
"""
title = input("Title: ")
date = input("Date: ")
category = input("Category: ")
slug = input("Slug: ")
tags = input("Tags: ")
lang = input("Lang: ")
j2 = Template(template)
output = j2.render(title=title, date=date, category=category, slug=slug, tags=tags, lang=lang)
path = "content/articles/{}".format(date)
if not os.path.exists(path):
os.makedirs(path)
filename = slug + ".md"
with open(os.path.join(path,filename), "w") as file:
file.write(output)