You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed download link in docs (reconcile automation) (#2058)
<!-- REMOVE IRRELEVANT COMMENTS BEFORE CREATING A PULL REQUEST -->
## Changes
Fixed documentation.
### What does this PR do?
I changed the markdown link to use JSX with the useBaseUrl hook:
`<a href={useBaseUrl('/lakebridge_reconciliation.dbc')} target="_blank"
rel="noopener noreferrer">Link to the notebook</a>`
### Relevant implementation details
When Docusaurus built the site, it was:
- Moving the file to assets/files/ directory
- Adding a hash suffix for cache busting
- Adding a trailing slash
- This resulted in a broken link:
`/lakebridge/assets/files/lakebridge_reconciliation-13ef362ff385092c2af4bd7423976694.dbc/`
### Functionality
- [ ] added relevant user documentation
- [ ] added new CLI command
- [ ] modified existing command: `databricks labs lakebridge ...`
- [x] fixed bug
### Tests
<!-- How is this tested? Please see the checklist below and also
describe any other relevant tests -->
- [x] manually tested
- [ ] added unit tests
- [ ] added integration tests
Copy file name to clipboardExpand all lines: docs/lakebridge/docs/reconcile/reconcile_automation.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ import LakebridgeTabs from '@site/src/components/ReconcileTabs';
92
92
93
93
<LakebridgeTabs />
94
94
95
-
[Link to the notebook](/lakebridge_reconciliation.dbc) - Unzip the downloaded file and upload the notebook file to your Databricks workspace.
95
+
<ahref={useBaseUrl('/lakebridge_reconciliation.dbc')}target="_blank"rel="noopener noreferrer">Link to the notebook</a> - Unzip the downloaded file and upload the notebook file to your Databricks workspace.
96
96
97
97
The utility consists of three key Databricks notebooks:
0 commit comments