Преглед на файлове

Remove some of the link rewriting to hopefully fix broken docs links.

Dan Helfman преди 6 години
родител
ревизия
308cb31bf9
променени са 1 файла, в които са добавени 2 реда и са изтрити 3 реда
  1. 2 3
      .eleventy.js

+ 2 - 3
.eleventy.js

@@ -14,10 +14,9 @@ module.exports = function(eleventyConfig) {
         breaks: false,
         linkify: true,
         // Replace links to .md files with links to directories. This allows unparsed Markdown links
-        // to work on GitHub, while rendered links elsewhere also work. Also replaced dotted
-        // relative links for the same reason.
+        // to work on GitHub, while rendered links elsewhere also work.
         replaceLink: function (link, env) {
-            return link.replace(/\.md$/, '/').replace('../..', '../../..');
+            return link.replace(/\.md$/, '/');
         }
     };
     let markdownItAnchorOptions = {