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
will try to create about.md, which is NOT in a collection, as /about/index.html, which is the root of the drive on a LInux or OS X system. changing it to:
makes it relative to something, which happens to be the root of the build dir. What should probably happen is permalinks should always build paths relative to the build dir.
The text was updated successfully, but these errors were encountered:
It would be preferable if the plugin code actually prevented the accidental use of a / at the start of a pattern. After getting the path maybe something like:
// Remove leading / to avoid escaping to the root folder!!
if (path.indexOf('/') === 0){
path = path.substring(1);
}
Related to #25:
will try to create
about.md
, which is NOT in a collection, as/about/index.html
, which is the root of the drive on a LInux or OS X system. changing it to:makes it relative to something, which happens to be the root of the build dir. What should probably happen is permalinks should always build paths relative to the build dir.
The text was updated successfully, but these errors were encountered: