leihou6116 opened a new issue, #38540: URL: https://github.com/apache/arrow/issues/38540
### Describe the bug, including details regarding any error messages, version, and platform. When the arrow tabular variable name contains hyperlink, it is displayed as \<strong>[hLink1](http://www.foo.com)\</strong> instead of [**hLink1**](http://www.foo.com). Note: there is no existing test to cover this. Please add tests for this bug fix. ```MATLAB >> hLink1 = string('<a href="http://www.foo.com">foo</a>'); >> hLink2 = string('<a href="http://www.foo.com">another foo</a>'); >> t = table(["a";"bcd";missing;""],[hLink1;hLink2;hLink1;hLink2],[NaN;1;2;3],'VariableNames',["Description", hLink1, "Result"]) t = 4×3 table Description foo Result ___________ _____________ ______ "a" "foo" NaN "bcd" "another foo" 1 <missing> "foo" 2 "" "another foo" 3 >> arrow.table(t) ans = Arrow Table with 4 rows and 3 columns: Schema: Description: String | <strong>foo</strong>: String | Result: Float64 First Row: "a" | "foo" | null ``` ### Component(s) MATLAB -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
