Commit 09a30b9
Fix Docusaurus JSX syntax error in balance README.md (#151)
Summary:
Pull Request resolved: #151
The Docusaurus build was failing with a JSX syntax error due to an improperly closed HTML `<img>` tag in the Downloads badge on line 15 of the README.md file.
When Docusaurus processes markdown files, it converts them to JSX, which requires all HTML tags to be either properly closed or self-closing. The Downloads badge was using raw HTML `[<img src="...">](...)` without a proper closing tag, causing the build to fail with:
```
SyntaxError: Expected corresponding JSX closing tag for <img>
```
This change converts the Downloads badge to use proper markdown syntax `[](...)`, making it consistent with the other badges in the file and resolving the build error.
Differential Revision: D87176281
fbshipit-source-id: 1daf6e9e707b876bf0a21fdb0e95e925a6b54bac1 parent 81b2647 commit 09a30b9
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
0 commit comments