From df1cafd507c5040cd42b949842ff9857367d8309 Mon Sep 17 00:00:00 2001 From: Anthony Gaudino Date: Tue, 23 Aug 2016 21:48:35 -0300 Subject: [PATCH] On the site documentation section, links to documentation items point to the "jekyllrb.com" website, this means that users testing changes might get confused because they will see the official external website instead of their local website upon clicking those links. --- site/_includes/docs_option.html | 2 +- site/_includes/docs_ul.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/site/_includes/docs_option.html b/site/_includes/docs_option.html index e7afcc88aa1..a2e156220a3 100644 --- a/site/_includes/docs_option.html +++ b/site/_includes/docs_option.html @@ -1,5 +1,5 @@ {% for item in include.items %} {% assign item_url = item | prepend:"/docs/" | append:"/" %} {% assign doc = site.docs | where: "url", item_url | first %} - + {% endfor %} diff --git a/site/_includes/docs_ul.html b/site/_includes/docs_ul.html index 7688328fc20..adb6600e845 100644 --- a/site/_includes/docs_ul.html +++ b/site/_includes/docs_ul.html @@ -2,6 +2,6 @@ {% for item in include.items %} {% assign item_url = item | prepend:"/docs/" | append:"/" %} {% assign p = site.docs | where:"url", item_url | first %} -
  • {{ p.title }}
  • +
  • {{ p.title }}
  • {% endfor %}