File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments