作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试创建一个带有超链接的列表。每个列表项在一行中包含一个主题和对该主题的简单描述。我想包含主题的超链接而不是描述。我所做的如下。
ul#subjects
li
a(href="#") Subject: Here is the description of the subject
该链接工作正常,但它覆盖了整行文本。如何关闭超链接,使其在 HTML 中变成如下所示的内容?请注意,“:”未包含在超链接中。
<ul id='subjects'>
<li><a href='#'>Subject</a>: Here is is the description of the subject
</ul>
谢谢。 :)
最佳答案
使用|
在Jade中显示HTML文本
例如
ul#subjects
li
a(href="#") Subject
| : Here is the description of the subject
关于node.js - Jade 模板 : How to create a hyperlink in UL with description to the hyperlink,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25968472/
我是一名优秀的程序员,十分优秀!