Skip to content

Commit 11bb735

Browse files
authored
Fix HTML links in examples index (#7037)
This pull request makes minor corrections to the example links in the `docs/examples/index.md` file. The main change is fixing the HTML anchor tags to ensure the `href` attributes are properly quoted, which improves link reliability and HTML validity. - Documentation fixes: * Fixed missing opening quotes in the `href` attributes for the spinner and stacks example links in `docs/examples/index.md`. [[1]](diffhunk://#diff-5e297a681a7f0e124ef51134b519ec471a165f08499fbcb724dfa0e58edd08c1L180-R180) [[2]](diffhunk://#diff-5e297a681a7f0e124ef51134b519ec471a165f08499fbcb724dfa0e58edd08c1L193-R193)fixed 2 invalid html links ## 📝 Summary ## 🔍 Description of Changes ## 📋 Checklist - [x] I have read the [contributor guidelines](https://github.com/marimo-team/marimo/blob/main/CONTRIBUTING.md). - [x] For large changes, or changes that affect the public API: this change was discussed or approved through an issue, on [Discord](https://marimo.io/discord?ref=pr), or the community [discussions](https://github.com/marimo-team/marimo/discussions) (Please provide a link if applicable). - [x] I have added tests for the changes made. - [x] I have run the code and verified that it works as expected.
1 parent b0fd6ac commit 11bb735

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/examples/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ overview.
177177

178178
---
179179

180-
<a href=outputs/spinner"><img src="/_static/example-thumbs/spinner.png" /></a>
180+
<a href="outputs/spinner"><img src="/_static/example-thumbs/spinner.png" /></a>
181181

182182
</div>
183183

@@ -190,7 +190,7 @@ overview.
190190

191191
---
192192

193-
<a href=outputs/stacks.md"><img src="/_static/example-thumbs/stacks.png" /></a>
193+
<a href="outputs/stacks.md"><img src="/_static/example-thumbs/stacks.png" /></a>
194194

195195
- 📁 [**Accordion toggle**](../api/layouts/accordion.md)
196196

0 commit comments

Comments
 (0)