From 409860957c46d07f9fe449aaeb6d86ef50c89ec9 Mon Sep 17 00:00:00 2001 From: Luka Jeran Date: Tue, 8 Oct 2024 02:24:51 +0200 Subject: [PATCH] fix: links in docs (#9450) ## PR Description Fixes these links on https://vega.github.io/vega-lite/docs/: > This documentation describes the [JSON specification language](https://vega.github.io/vega-lite/docs/#spec) > ... > - [Point Selection Properties](https://vega.github.io/vega-lite/docs/selection.html#point) > - [Interval Selection Properties](https://vega.github.io/vega-lite/docs/selection.html#interval) --- site/docs/overview.md | 2 +- site/docs/parameter/select.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/site/docs/overview.md b/site/docs/overview.md index 39a455fb77..1ff46fea30 100644 --- a/site/docs/overview.md +++ b/site/docs/overview.md @@ -7,7 +7,7 @@ permalink: /docs/ **Vega-Lite** is a high-level grammar for interactive graphics. It provides a concise JSON syntax for supporting rapid generation of interactive multi-view visualizations to support analysis. Vega-Lite can serve as a declarative format for describing and creating data visualizations. To use Vega-Lite, our compiler compiles a Vega-Lite specification into a lower-level, more detailed [Vega](https://vega.github.io/vega) specifications and rendered using Vega's compiler. -This documentation describes the [JSON specification language](#spec) and how to [use Vega-Lite visualizations]({{site.baseurl}}/usage/embed.html) in a web application. +This documentation describes the [JSON specification language](spec.html) and how to [use Vega-Lite visualizations]({{site.baseurl}}/usage/embed.html) in a web application.