Skip to content

Commit 446a52e

Browse files
committed
Fix deployment and update dependencies
1 parent 3ccd4b7 commit 446a52e

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

Diff for: _config.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ baseurl: ""
77
# Source
88
source: ./src
99
destination: ./build
10-
plugins: ./src/_plugins
11-
layouts: ./src/_layouts
12-
data_source: ./src/_data
1310

1411
# Collections
1512
collections:
@@ -36,4 +33,9 @@ assets:
3633

3734
# Markdown
3835
redcarpet:
39-
extensions: ["no_intra_emphasis", "with_toc_data", "autolink", "strikethrough", "tables", "footnotes"]
36+
extensions:
37+
- no_intra_emphasis
38+
- autolink
39+
- strikethrough
40+
- tables
41+
- footnotes

Diff for: fabfile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from fabric.contrib.project import rsync_project
2-
from fabric.api import *
2+
from fabric.api import local, env, task
33

44
env.user = 'poletaev'
5-
env.hosts = ['zen.su']
5+
env.hosts = ['zenwalker.ru']
66

77

88
@task

0 commit comments

Comments
 (0)