From 1dc8bdd4f7d99972943009ed0356db74f48d6f5d Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Wed, 17 Aug 2022 21:55:08 -0400 Subject: [PATCH] Update relative links in quickstarts. --- doc/quickstart/R.md | 7 ++++--- doc/quickstart/cli.md | 7 ++++--- doc/quickstart/go.md | 7 ++++--- doc/quickstart/julia.md | 7 ++++--- doc/quickstart/python.md | 6 +++--- 5 files changed, 19 insertions(+), 15 deletions(-) diff --git a/doc/quickstart/R.md b/doc/quickstart/R.md index 3429fd4f99..a21ec2ff32 100644 --- a/doc/quickstart/R.md +++ b/doc/quickstart/R.md @@ -3,8 +3,8 @@ This page describes how you can quickly get started using mlpack from R and gives a few examples of usage, and pointers to deeper documentation. -This quickstart guide is also available for [Python]( ), [Julia]( ), -[the command line]( ), and [Go]( ). +This quickstart guide is also available for [Python](python.md), +[Julia](julia.md), [the command line](cli.md), and [Go](go.md). ## Installing mlpack @@ -16,7 +16,8 @@ install.packages('mlpack') ``` Building the R bindings from scratch is a little more in-depth, though. For -information on that, follow the instructions in the [main README]( ). +information on that, follow the instructions in the +[main README](../../README.md). ## Simple mlpack quickstart example diff --git a/doc/quickstart/cli.md b/doc/quickstart/cli.md index aece02cfe9..7375d1e95b 100644 --- a/doc/quickstart/cli.md +++ b/doc/quickstart/cli.md @@ -4,8 +4,8 @@ This page describes how you can quickly get started using mlpack from the command-line and gives a few examples of usage, and pointers to deeper documentation. -This quickstart guide is also available for [Python]( ), [R]( ), [Julia]( ), and -[Go]( ). +This quickstart guide is also available for [Python](python.md), [R](R.md), +[Julia](julia.md), and [Go](go.md). ## Installing mlpack @@ -32,7 +32,8 @@ docker run -it mlpack/mlpack /bin/bash This Docker image has mlpack's command-line bindings already built and installed. -If you prefer to build mlpack from scratch, see the [main README]( ). +If you prefer to build mlpack from scratch, see the +[main README](../../README.md). ## Simple quickstart example diff --git a/doc/quickstart/go.md b/doc/quickstart/go.md index f6c64cf403..1c7038cf2d 100644 --- a/doc/quickstart/go.md +++ b/doc/quickstart/go.md @@ -3,8 +3,8 @@ This page describes how you can quickly get started using mlpack from Go and gives a few examples of usage, and pointers to deeper documentation. -This quickstart guide is also available for [Python]( ), [Julia]( ), -[the command line]( ), and [R]( ). +This quickstart guide is also available for [Python](python.md), +[Julia](julia.md), [the command line](cli.md), and [R](R.md). ## Installing mlpack @@ -17,7 +17,8 @@ cd ${GOPATH}/src/mlpack.org/v1/mlpack make install ``` Building the Go bindings from scratch is a little more in-depth, though. For -information on that, follow the instructions in the [main README]( ). +information on that, follow the instructions in the +[main README](../../README.md). ## Simple mlpack quickstart example diff --git a/doc/quickstart/julia.md b/doc/quickstart/julia.md index eb56efd5eb..a38a6d770d 100644 --- a/doc/quickstart/julia.md +++ b/doc/quickstart/julia.md @@ -3,8 +3,8 @@ This page describes how you can quickly get started using mlpack from Julia and gives a few examples of usage, and pointers to deeper documentation. -This quickstart guide is also available for [Python]( ), [the command line]( ), -[R]( ), and [Go]( ). +This quickstart guide is also available for [Python](python.md), +[the command line](cli.md), [R](R.md), and [Go](go.md). ## Installing mlpack @@ -17,7 +17,8 @@ Pkg.add("mlpack") ``` Building the Julia bindings from scratch is a little more in-depth, though. For -information on that, follow the instructions in the [main README]( ). +information on that, follow the instructions in the +[main README](../../README.md). ## Simple quickstart example diff --git a/doc/quickstart/python.md b/doc/quickstart/python.md index f1d6cd462a..92d9dcee7a 100644 --- a/doc/quickstart/python.md +++ b/doc/quickstart/python.md @@ -3,8 +3,8 @@ This page describes how you can quickly get started using mlpack from Python and gives a few examples of usage, and pointers to deeper documentation. -This quickstart guide is also available for [the command line]( ), [Julia]( ), -[R]( ), and [Go]( ). +This quickstart guide is also available for [the command line](cli.md), +[Julia](julia.md), [R](R.md), and [Go](go.md). ## Installing mlpack @@ -27,7 +27,7 @@ docker run -it mlpack/mlpack /bin/bash ``` Otherwise, you can build the Python bindings from scratch using the -documentation in the [main README]( ). +documentation in the [main README](../../README.md). ## Simple mlpack quickstart example