Commit f0a240aa authored by Marcel Stör's avatar Marcel Stör
Browse files

Only process relative links on RTD

parent 30744afd
...@@ -44,13 +44,15 @@ var nodemcu = nodemcu || {}; ...@@ -44,13 +44,15 @@ var nodemcu = nodemcu || {};
* replaces the relative path with an absolute path based on the selected branch. * replaces the relative path with an absolute path based on the selected branch.
*/ */
function replaceRelativeLinksWithStaticGitHubUrl() { function replaceRelativeLinksWithStaticGitHubUrl() {
var relativePath = isOnRtd() ? "../../.." : "../.."; if (isOnRtd()) {
var relativePath = "../../..";
var gitHubPath = "https://github.com/nodemcu/nodemcu-firmware/tree/" + determineSelectedBranch(); var gitHubPath = "https://github.com/nodemcu/nodemcu-firmware/tree/" + determineSelectedBranch();
var gitHubLinks = $("a[href^='" + relativePath + "']").each(function (index) { var gitHubLinks = $("a[href^='" + relativePath + "']").each(function (index) {
var url = $(this).attr('href'); var url = $(this).attr('href');
$(this).attr('href', url.replace(relativePath, gitHubPath)); $(this).attr('href', url.replace(relativePath, gitHubPath));
}); });
} }
}
/** /**
* Analyzes the URL of the current page to find out what the selected GitHub branch is. It's usually * Analyzes the URL of the current page to find out what the selected GitHub branch is. It's usually
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment