mirror of
https://github.com/netdata/netdata.git
synced 2025-04-25 13:33:48 +00:00
Make integration links absolute (#18851)
make integration links absolute
This commit is contained in:
parent
281b298118
commit
9ead7a2ea4
1 changed files with 5 additions and 0 deletions
|
@ -963,12 +963,17 @@ def render_authentications(categories, authentications, ids):
|
||||||
return authentications, clean_authentications, ids
|
return authentications, clean_authentications, ids
|
||||||
|
|
||||||
|
|
||||||
|
def convert_local_links(text, prefix):
|
||||||
|
return text.replace("](/", f"]({prefix}/")
|
||||||
|
|
||||||
|
|
||||||
def render_integrations(categories, integrations):
|
def render_integrations(categories, integrations):
|
||||||
template = get_jinja_env().get_template('integrations.js')
|
template = get_jinja_env().get_template('integrations.js')
|
||||||
data = template.render(
|
data = template.render(
|
||||||
categories=json.dumps(categories, indent=4),
|
categories=json.dumps(categories, indent=4),
|
||||||
integrations=json.dumps(integrations, indent=4),
|
integrations=json.dumps(integrations, indent=4),
|
||||||
)
|
)
|
||||||
|
data = convert_local_links(data, "https://github.com/netdata/netdata/blob/master")
|
||||||
OUTPUT_PATH.write_text(data)
|
OUTPUT_PATH.write_text(data)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue