From fee62b876db6728f2f8d6095001a4eded4277097 Mon Sep 17 00:00:00 2001 From: Andy Gauge Date: Wed, 10 Oct 2018 14:16:28 -0700 Subject: [PATCH] absolute links --- src/development_tools/debugging.md | 18 +++++++++--------- src/science/mathematics.md | 22 +++++++++++----------- src/web/clients.md | 20 ++++++++++---------- 3 files changed, 30 insertions(+), 30 deletions(-) diff --git a/src/development_tools/debugging.md b/src/development_tools/debugging.md index 6786f8b..1783cd5 100644 --- a/src/development_tools/debugging.md +++ b/src/development_tools/debugging.md @@ -12,14 +12,14 @@ | [Include timestamp in log messages][ex-log-timestamp] | [![log-badge]][log] [![env_logger-badge]][env_logger] [![chrono-badge]][chrono] | [![cat-debugging-badge]][cat-debugging] | | [Log messages to a custom location][ex-log-custom] | [![log-badge]][log] [![log4rs-badge]][log4rs] | [![cat-debugging-badge]][cat-debugging] | -[ex-log-debug]: development_tools/debugging/log.html#log-a-debug-message-to-the-console -[ex-log-error]: development_tools/debugging/log.html#log-an-error-message-to-the-console -[ex-log-stdout]: development_tools/debugging/log.html#log-to-stdout-instead-of-stderr -[ex-log-custom-logger]: development_tools/debugging/log.html#log-messages-with-a-custom-logger -[ex-log-syslog]: development_tools/debugging/log.html#log-to-the-unix-syslog -[ex-log-mod]: development_tools/debugging/config_log.html#enable-log-levels-per-module -[ex-log-env-variable]: development_tools/debugging/config_log.html#use-a-custom-environment-variable-to-set-up-logging -[ex-log-timestamp]: development_tools/debugging/config_log.html#include-timestamp-in-log-messages -[ex-log-custom]: development_tools/debugging/config_log.html#log-messages-to-a-custom-location +[ex-log-debug]: /development_tools/debugging/log.html#log-a-debug-message-to-the-console +[ex-log-error]: /development_tools/debugging/log.html#log-an-error-message-to-the-console +[ex-log-stdout]: /development_tools/debugging/log.html#log-to-stdout-instead-of-stderr +[ex-log-custom-logger]: /development_tools/debugging/log.html#log-messages-with-a-custom-logger +[ex-log-syslog]: /development_tools/debugging/log.html#log-to-the-unix-syslog +[ex-log-mod]: /development_tools/debugging/config_log.html#enable-log-levels-per-module +[ex-log-env-variable]: /development_tools/debugging/config_log.html#use-a-custom-environment-variable-to-set-up-logging +[ex-log-timestamp]: /development_tools/debugging/config_log.html#include-timestamp-in-log-messages +[ex-log-custom]: /development_tools/debugging/config_log.html#log-messages-to-a-custom-location {{#include ../links.md}} diff --git a/src/science/mathematics.md b/src/science/mathematics.md index 698818b..972a45e 100644 --- a/src/science/mathematics.md +++ b/src/science/mathematics.md @@ -14,16 +14,16 @@ | [Adding complex numbers][add-complex] | [![num-badge]][num] | [![cat-science-badge]][cat-science] | | [Mathematical functions on complex numbers][mathematical-functions] | [![num-badge]][num] | [![cat-science-badge]][cat-science] | -[vector-sum]: science/mathematics/linear_algebra.html#vector-sum -[vector-norm]: science/mathematics/linear_algebra.html#vector-norm -[add-matrices]: science/mathematics/linear_algebra.html#adding-matrices -[multiply-matrices]: science/mathematics/linear_algebra.html#multiplying-matrices -[multiply-scalar-vector-matrix]: science/mathematics/linear_algebra.html#multiply-a-scalar-with-a-vector-with-a-matrix -[side-length]: science/mathematics/trigonometry.html#calculating-the-side-length-of-a-triangle -[tan-sin-cos]: science/mathematics/trigonometry.html#verifying-tan-is-equal-to-sin-divided-by-cos -[latitude-longitude]: science/mathematics/trigonometry.html#distance-between-two-points-on-the-earth -[create-complex]: science/mathematics/complex_numbers.html#creating-complex-numbers -[add-complex]: science/mathematics/complex_numbers.html#adding-complex-numbers -[mathematical-functions]: science/mathematics/complex_numbers.html#mathematical-functions +[vector-sum]: /science/mathematics/linear_algebra.html#vector-sum +[vector-norm]: /science/mathematics/linear_algebra.html#vector-norm +[add-matrices]: /science/mathematics/linear_algebra.html#adding-matrices +[multiply-matrices]: /science/mathematics/linear_algebra.html#multiplying-matrices +[multiply-scalar-vector-matrix]: /science/mathematics/linear_algebra.html#multiply-a-scalar-with-a-vector-with-a-matrix +[side-length]: /science/mathematics/trigonometry.html#calculating-the-side-length-of-a-triangle +[tan-sin-cos]: /science/mathematics/trigonometry.html#verifying-tan-is-equal-to-sin-divided-by-cos +[latitude-longitude]: /science/mathematics/trigonometry.html#distance-between-two-points-on-the-earth +[create-complex]: /science/mathematics/complex_numbers.html#creating-complex-numbers +[add-complex]: /science/mathematics/complex_numbers.html#adding-complex-numbers +[mathematical-functions]: /science/mathematics/complex_numbers.html#mathematical-functions {{#include ../links.md}} diff --git a/src/web/clients.md b/src/web/clients.md index c56faea..c765cf2 100644 --- a/src/web/clients.md +++ b/src/web/clients.md @@ -11,15 +11,15 @@ | [Make a partial download with HTTP range headers][ex-progress-with-range] | [![reqwest-badge]][reqwest] | [![cat-net-badge]][cat-net] | | [POST a file to paste-rs][ex-file-post] | [![reqwest-badge]][reqwest] | [![cat-net-badge]][cat-net] | -[ex-url-basic]: web/clients/requests.html#make-a-http-get-request -[ex-rest-custom-params]: web/clients/requests.html#set-custom-headers-and-url-parameters-for-a-rest-request -[ex-rest-get]: web/clients/apis.html#query-the-github-api -[ex-rest-head]: web/clients/apis.html#check-if-an-api-resource-exists -[ex-rest-post]: web/clients/apis.html#create-and-delete-gist-with-github-api -[ex-paginated-api]: web/clients/apis.html#consume-a-paginated-restful-api -[ex-handle-rate-limited-api]: web/clients/apis.html#handle-a-rate-limited-api -[ex-url-download]: web/clients/download.html#download-a-file-to-a-temporary-directory -[ex-progress-with-range]: web/clients/download.html#post-a-file-to-paste-rs -[ex-file-post]: web/clients/download.html#make-a-partial-download-with-http-range-headers +[ex-url-basic]: /web/clients/requests.html#make-a-http-get-request +[ex-rest-custom-params]: /web/clients/requests.html#set-custom-headers-and-url-parameters-for-a-rest-request +[ex-rest-get]: /web/clients/apis.html#query-the-github-api +[ex-rest-head]: /web/clients/apis.html#check-if-an-api-resource-exists +[ex-rest-post]: /web/clients/apis.html#create-and-delete-gist-with-github-api +[ex-paginated-api]: /web/clients/apis.html#consume-a-paginated-restful-api +[ex-handle-rate-limited-api]: /web/clients/apis.html#handle-a-rate-limited-api +[ex-url-download]: /web/clients/download.html#download-a-file-to-a-temporary-directory +[ex-progress-with-range]: /web/clients/download.html#post-a-file-to-paste-rs +[ex-file-post]: /web/clients/download.html#make-a-partial-download-with-http-range-headers {{#include ../links.md}}