在 Typoscript 中添加空格字符
我想在 TypoScript 中添加空格 它涉及 tt_news 中的“更多”链接。
这是我的 HTML:
<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>
这是我想要的:(
<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>
区别在于 之前的空格。
在我看来,我必须在生成链接的 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"> |</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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 noTrimWrap 而不是换行:
请参阅 TSref notrimwrap
Use noTrimWrap instead of wrap:
See TSref notrimwrap
我的解决方案是添加:
My solution was to add:
我发现了这个技术,但我注意到它非常满意
HTML 专家会杀了我
I found this technic but I m note quite happy with it
HTML gurus'll kill me
又怎样呢
?
nbsp 只会添加一个空格,不需要额外的跨度。
What about
?
nbsp will just add a space and no additional span is needed.