0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-26 13:54:48 +00:00

Accept <> around links in markdown ()

This commit is contained in:
Chris Akritidis 2019-08-13 09:06:53 +02:00 committed by GitHub
parent 0f2531e0be
commit d6ede34882
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions
collectors/python.d.plugin/riakkv
docs/generator

View file

@ -4,8 +4,7 @@ Monitors one or more Riak KV servers.
**Requirements:**
* An accessible `/stats` endpoint. See [the Riak KV configuration reference]
documentation](https://docs.riak.com/riak/kv/2.2.3/configuring/reference/#client-interfaces)
* An accessible `/stats` endpoint. See [the Riak KV configuration reference documentation](<https://docs.riak.com/riak/kv/2.2.3/configuring/reference/#client-interfaces>)
for how to enable this.
The following charts are included, which are mostly derived from the metrics

View file

@ -227,7 +227,7 @@ checklinks () {
while read -r l ; do
for word in $l ; do
if [[ $word =~ .*\]\(([^\(\) ]*)\).* ]] ; then
lnk="${BASH_REMATCH[1]}"
lnk=$(echo "${BASH_REMATCH[1]}" | tr -d '<>')
if [ -z "$lnk" ] ; then continue ; fi
dbg "-$lnk"
case "$lnk" in