文章内容首行缩进是文章编辑中常用的功能,可以通过一下一些方式来实现。
本功能在增强型商业版中提供
点击配置 - 站点设置 - 编辑器设置
,开启首行缩进功能。
在编辑器里点击一键排版
按钮。
编辑器里的内容不首行缩进,只在模板中用CSS控制文章内容的首行缩进。
如文章模板article.html
<!doctype html>
[#escape x as (x)!?html]
<html lang="zh-CN">
<head>
...
<style>
.article-content p {
text-indent: 2em;
}
</style>
...
</head>
<body>
...
<div class="article-content">[#noescape]${article.text!}[/#noescape]</div>
...
</body>
</html>
[/#escape]