mirror of
https://github.com/netdata/netdata.git
synced 2025-04-26 13:54:48 +00:00
Accept <> around links in markdown (#6646)
This commit is contained in:
parent
0f2531e0be
commit
d6ede34882
2 changed files with 2 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue