absolute links

This commit is contained in:
Andy Gauge 2018-10-10 14:16:28 -07:00
parent fbcaca6c05
commit fee62b876d
3 changed files with 30 additions and 30 deletions

View file

@ -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}}

View file

@ -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}}

View file

@ -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}}