将断线添加到链接中的 HTML 实体 [duplicate]

HTML Entities to add a break-line into a link [duplicate]

提问人:Sulty 提问时间:3/6/2023 最后编辑:Sulty 更新时间:3/6/2023 访问量:64

问:

在 Blogger 代码中

<a class='whatsapp' expr:href='&quot;https://api.whatsapp.com/send?text=&quot; + &quot;*&quot; + data:post.title + &quot;*&quot; + &quot; - &quot; + data:post.url.canonical + &quot; - &quot; + &quot;random text&quot;' rel='nofollow' title='Share to WhatsApp'></a>

我想在data:post.title(链接)之后添加一个换行线,就像下一张图片一样。如何?,是否有 HTML 实体来添加断线?

带断线,不带断线图像

javascript php html xhtml

评论


答:

0赞 Masunulla 3/6/2023 #1

使用此 %0a

https://api.whatsapp.com/send?text=data:title %0a %0a data:url 随机文本

0赞 Syeda Warda Naqvi 3/6/2023 #2

为了打破线,我们使用 so add after data:post.title<br><br>

<a class='whatsapp' expr:href='&quot;https://api.whatsapp.com/send?text=&quot; + &quot;*&quot; + data:post.title + &quot;<br>- &quot; + data:post.url.canonical + &quot; - &quot; + &quot;random text&quot;' rel='nofollow' title='Share to WhatsApp'></a>