gpt4 book ai didi

javascript - 在 print 方法中显示格式化的 URL

转载 作者:行者123 更新时间:2023-11-30 14:46:53 25 4
gpt4 key购买 nike

我想创建一个表格,并在“链接”列中添加可点击的 URL,由于 URL 太长,这些 URL 应显示自定义标题。

到目前为止,我有:

str = "Test Title";
link = str.link("https://my_long_url.com/v1.0/ui/index.html#/testkeywordreport?detailView=1&id=1234567")

因为我在 Apache Zeppelin 段落中,所以我需要在表格中打印内容。因此,我使用 print 方法创建了一个表,并以相同的方式向其中添加项目,例如:

print("%table Test Link)
print(link)

结果如下:

Test Link
---------
<a href="https://my_long_url.com/v1.0/ui/index.html#/testkeywordreport?detailView=1&id=1234567">Test Title</a>

我期望的是带有测试标题的超链接:

Test Link
---------
Test Title

这可能吗?

最佳答案

我使用 Apache Zeppelin 中的 %html 标签解决了这个问题:

str = "Test Title"
link =str.link("https://my_long_url.com/v1.0/ui/index.html#/testkeywordreport?detailView=1&id=1234567")
print("%table Test Link)
print("%html " + link)

Reference: Apache Display System (Table)

关于javascript - 在 print 方法中显示格式化的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48768838/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com