Skip to content

Commit bbcf633

Browse files
committed
Fix template literal interpolation in Stackblitz demo links
Replace plain markdown links with Vue dynamic :href bindings so that $page.buildDateURIEncoded is properly interpolated at render time. Markdown links compile to static href attributes where ${} syntax is emitted as literal characters instead of being evaluated.
1 parent 3f111b0 commit bbcf633

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

‎docs/guide/custom-functions.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ it('returns a VALUE error if the range argument contains a string', () => {
358358
359359
## Working demo
360360
361-
Explore the full working example on [Stackblitz](https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/custom-functions?v=${$page.buildDateURIEncoded}).
361+
Explore the full working example on <a :href="`https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/custom-functions?v=${$page.buildDateURIEncoded}`">Stackblitz</a>.
362362

363363
This demo contains the implementation of both the
364364
[`GREET`](#add-a-simple-custom-function) and

‎docs/guide/integration-with-angular.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ For more details, see the [client-side installation](client-side-installation.md
66

77
## Demo
88

9-
Explore the full working example on [Stackblitz](https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/angular-demo?v=${$page.buildDateURIEncoded}).
9+
Explore the full working example on <a :href="`https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/angular-demo?v=${$page.buildDateURIEncoded}`">Stackblitz</a>.

‎docs/guide/integration-with-react.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ For more details, see the [client-side installation](client-side-installation.md
66

77
## Demo
88

9-
Explore the full working example on [Stackblitz](https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/react-demo?v=${$page.buildDateURIEncoded}).
9+
Explore the full working example on <a :href="`https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/react-demo?v=${$page.buildDateURIEncoded}`">Stackblitz</a>.

‎docs/guide/integration-with-svelte.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ For more details, see the [client-side installation](client-side-installation.md
66

77
## Demo
88

9-
Explore the full working example on [Stackblitz](https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/svelte-demo?v=${$page.buildDateURIEncoded}).
9+
Explore the full working example on <a :href="`https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/svelte-demo?v=${$page.buildDateURIEncoded}`">Stackblitz</a>.

‎docs/guide/integration-with-vue.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This function prevents Vue from converting the HyperFormula instance into a reac
3131

3232
## Demo
3333

34-
Explore the full working example on [Stackblitz](https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/vue-3-demo?v=${$page.buildDateURIEncoded}).
34+
Explore the full working example on <a :href="`https://stackblitz.com/github/handsontable/hyperformula-demos/tree/3.2.x/vue-3-demo?v=${$page.buildDateURIEncoded}`">Stackblitz</a>.
3535

3636
::: tip
3737
This demo uses the [Vue 3](https://v3.vuejs.org/) framework. If you are looking for an example using Vue 2, check out the [code on GitHub](https://github.com/handsontable/hyperformula-demos/tree/2.5.x/vue-demo).

0 commit comments

Comments
 (0)