You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,8 @@ markdown: kramdown
65
65
66
66
layouts_dir: _layouts
67
67
includes_dir: _includes
68
-
plugins_dir: _plugins
68
+
plugins_dir:
69
+
- _plugins
69
70
shared_dir: _shared
70
71
71
72
include: ['.htaccess']
@@ -75,6 +76,8 @@ sass:
75
76
style: compressed
76
77
```
77
78
79
+
**Please note the `_plugins` directory must be a list and not a strong**[See Issue #4261](https://github.com/jekyll/jekyll/issues/4261)
80
+
78
81
Due to the way things are done internally in Jekyll and the limitation of my plugin, the shared source directory must be one directory down from the source path. Your directory structure should look like the following:
79
82
80
83
```
@@ -88,7 +91,6 @@ Due to the way things are done internally in Jekyll and the limitation of my plu
88
91
│ ├── favicon.ico
89
92
│ ├── files
90
93
│ ├── images
91
-
│ ├── _plugins -> ../_plugins/
92
94
│ ├── _posts
93
95
│ └── videos.html
94
96
├── _example_com.yml
@@ -100,7 +102,6 @@ Due to the way things are done internally in Jekyll and the limitation of my plu
100
102
│ ├── favicon.ico
101
103
│ ├── files
102
104
│ ├── images
103
-
│ ├── _plugins -> ../_plugins/
104
105
│ ├── _posts
105
106
│ └── videos.html
106
107
├── _example_net.yml
@@ -118,14 +119,14 @@ Due to the way things are done internally in Jekyll and the limitation of my plu
118
119
└── _plugins
119
120
```
120
121
121
-
Take care to notice you still need a symbolic link for `_plugins` to work correctly (I'm working on fixing that). When you build you sites, built them like so:
0 commit comments