diff --git a/docs/downloads.md b/docs/downloads.md new file mode 100644 index 0000000..0de0120 --- /dev/null +++ b/docs/downloads.md @@ -0,0 +1,11 @@ +# Some resources to download + +## Lync CLI tool + +- [lyng-linuxX64.zip](/distributables/lyng-linuxX64.zip) CLI tool for linuxX64: nodependencies, small monolith executable binary. + +## IDE plugins + +- [lyng-textmate.zip](../../lyng/distributables/lyng-textmate.zip) Texmate-compatible bundle with syntax coloring (could be outdated) + +- [lyng-idea-0.0.5-SNAPSHOT.zip](/distributables/lyng-idea-0.0.5-SNAPSHOT.zip) - plugin for IntelliJ-compatible IDE diff --git a/site/src/jsMain/resources/index.html b/site/src/jsMain/resources/index.html index bdda07d..df36bd8 100644 --- a/site/src/jsMain/resources/index.html +++ b/site/src/jsMain/resources/index.html @@ -413,6 +413,9 @@ + @@ -492,6 +495,8 @@ var activeLink = null; if (!hash || hash === '#' || hash === '#/') { activeLink = document.querySelector('#topbarNav .nav-link[data-route="home"]'); + } else if (hash.startsWith('#/docs/downloads.md')) { + activeLink = document.querySelector('#topbarNav .nav-link[data-route="downloads"]'); } else if (hash.startsWith('#/docs/') || hash.startsWith('#/authors')) { // Mark Docs menu root as active activeLink = document.querySelector('#topbarNav .nav-link.dropdown-toggle');