在 Typoscript 中添加空格字符

发布于 2024-09-30 18:26:59 字数 931 浏览 10 评论 0原文

我想在 TypoScript 中添加空格 它涉及 tt_news 中的“更多”链接。

这是我的 HTML:

<p class="bodytext">blablabla<span class="news-list-morelink">&nbsp;<a title="Read all the news" target="_top" href="http://www.google.com">More</a></span></p>

这是我想要的:(

<p class="bodytext">blablabla <span class="news-list-morelink">&nbsp;<a title="Read all the news" target="_top" href="http://www.google.com">More</a></span></p>

区别在于 之前的空格。

在我看来,我必须在生成链接的 TypoScript 中进行更改“更多的”。 那一定是我写“这里”的地方

plugin.tt_news {
 displayLatest{
  subheader_stdWrap {
   #More link after the bodytext
   append = TEXT
   append.data = register:newsMoreLink
   append.wrap = HERE<span class="news-list-morelink">&nbsp;|</span>
  }
 }
}

有人有想法吗? 谢谢...

I would like to add a blank/whitespace in TypoScript
It concerne a "More"-link in tt_news.

Here's the HTML I have :

<p class="bodytext">blablabla<span class="news-list-morelink"> <a title="Read all the news" target="_top" href="http://www.google.com">More</a></span></p>

And here's what I want :

<p class="bodytext">blablabla <span class="news-list-morelink"> <a title="Read all the news" target="_top" href="http://www.google.com">More</a></span></p>

(the difference is the whitespace juste before the <span>.

In my opinion, I must make a change in the TypoScript which generates the link "more".
That must be where I wrote "HERE"

plugin.tt_news {
 displayLatest{
  subheader_stdWrap {
   #More link after the bodytext
   append = TEXT
   append.data = register:newsMoreLink
   append.wrap = HERE<span class="news-list-morelink"> |</span>
  }
 }
}

Does anyone have an idea ?
Thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

爱已欠费 2024-10-07 18:26:59

使用 noTrimWrap 而不是换行:

append.noTrimWrap = | <span class="news-list-morelink"> |</span>|

请参阅 TSref notrimwrap

Use noTrimWrap instead of wrap:

append.noTrimWrap = | <span class="news-list-morelink"> |</span>|

See TSref notrimwrap

饮湿 2024-10-07 18:26:59

我的解决方案是添加:

NO.afterWrap =  

My solution was to add:

NO.afterWrap =  
猥︴琐丶欲为 2024-10-07 18:26:59

我发现了这个技术,但我注意到它非常满意

append.wrap = <span></span> <span class="news-list-morelink"> |</span>

HTML 专家会杀了我

I found this technic but I m note quite happy with it

append.wrap = <span></span> <span class="news-list-morelink"> |</span>

HTML gurus'll kill me

静水深流 2024-10-07 18:26:59

又怎样呢

append.wrap =  <span class="news-list-morelink"> |</span>

nbsp 只会添加一个空格,不需要额外的跨度。

What about

append.wrap =  <span class="news-list-morelink"> |</span>

?

nbsp will just add a space and no additional span is needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文