[DOCS] Fixes handlebar links in URL drilldowns (#83177)

* [DOCS] Fixes handlebar links in URL drilldowns

* And another one
This commit is contained in:
Kaarina Tungseth 2020-11-11 09:59:23 -06:00 committed by GitHub
parent 1fff1f6bca
commit 7fc5d1d9a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
beta[]
The URL template input uses https://handlebarsjs.com/guide/expressions.html#expressions[Handlebars] — a simple templating language. Handlebars templates look like regular text with embedded Handlebars expressions.
The URL template input uses https://ela.st/handlebars-docs#expressions[Handlebars] — a simple templating language. Handlebars templates look like regular text with embedded Handlebars expressions.
[source, bash]
----
@ -13,7 +13,7 @@ https://github.com/elastic/kibana/issues?q={{event.value}}
A Handlebars expression is a `{{`, some contents, followed by a `}}`. When the drilldown is executed, these expressions are replaced by values from the dashboard and interaction context.
[[helpers]]
In addition to https://handlebarsjs.com/guide/builtin-helpers.html[built-in] Handlebars helpers, you can use custom helpers.
In addition to https://ela.st/handlebars-helpers[built-in] Handlebars helpers, you can use custom helpers.
Refer to Handlebars https://ela.st/handlebars-docs#expressions[documentation] to learn about advanced use cases.