Skip to content

Commit 882b59d

Browse files
committed
Update feliz.markdown linkReference to a #622
1 parent cc01d8b commit 882b59d

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

src/Feliz.Markdown/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
## [Unreleased]
1818

19+
## 3.0.0-rc.2 - 2025-10-02
20+
21+
### 🐛 Fixed
22+
23+
- Change `linkReference` component to `a` component for rendering links. #622 by @tboby
24+
1925
## 3.0.0-rc.1 - 2025-10-02
2026

2127
### Changed

src/Feliz.Markdown/Markdown.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ module markdown =
6565
[<Erase>]
6666
type components =
6767
static member inline p(render: IParagraphProperties -> ReactElement) = unbox<IComponent> (PropHelper.mkAttr "p" render)
68-
static member inline linkReference(render: ILinkProperties -> ReactElement) = unbox<IComponent> (PropHelper.mkAttr "linkReference" render)
68+
static member inline a(render: ILinkProperties -> ReactElement) = unbox<IComponent> (PropHelper.mkAttr "a" render)
6969
static member inline h1(render: IHeadingProperties -> ReactElement) = unbox<IComponent> (PropHelper.mkAttr "h1" render)
7070
static member inline h2(render: IHeadingProperties -> ReactElement) = unbox<IComponent> (PropHelper.mkAttr "h2" render)
7171
static member inline h3 (render: IHeadingProperties -> ReactElement) = unbox<IComponent> (PropHelper.mkAttr "h3" render)

0 commit comments

Comments
 (0)