📄 comments.vm
字号:
<?xml version="1.0" encoding="UTF-8"?>
#set( $comments = $entry.comments )
$dateFormatter.applyPattern("MMMMM dd, yyyy 'at' hh:mm aa z")
<comments xmlns="http://www.joehewitt.com/content/blog.dtd"
entryid="$entry.Id">
#foreach( $comment in $comments )
<comment id="$comment.id">
<author>$comment.name</author>
<email>$comment.email</email>
<url>$comment.url</url>
<timestamp>$dateFormatter.format($comment.postTime)</timestamp>
<body>$utilities.escapeHTML( $comment.content )</body>
</comment>
#end
</comments>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -