我的JEditor窗格设置了我的页面介绍所有工作正常,但代码执行所有文本下来像一些行。 我可以修理谁?
我有这个HTML代码:
<html>
<head>
<title>{Title}</title>
<link rel="shortcut icon" href="{Favicon}">
<meta name="color:Background" content="#eee"/>
<meta name="color:Content Background" content="#fff"/>
<meta name="color:Heading text" content="{TitleColor}"/>
<meta name="color:Text" content="#000"/>
<meta name="color:Links Colors" content="#aaaaff"/>
<style type="text/css">
#title {
color: {color:Heading text};
}
#content{
background-color: {color:Content Background};
color: {color:Text};
}
A{
color: {color:Links Colors};
}
</style>
</head>
<body bgcolor="{color:Background}">
<ol><h1 id="title">{Title}</h1></ol>
<div id="content">
<br>
<ol>
{block:Posts}
{block:Text}
{block:Title}
<h3><a href="{Permalink}">{Title}</a></h3>
{/block:Title}
{Body}
{/block:Text}
{/block:Posts}
</ol>
</div>
在网络上的工作,但在JEditPane标签<ol> </ol>
执行此操作时,我的所有文字都会显示为<br>
标记。
答案 0 :(得分:0)
JEditorPane仅支持HTML3.2。我不确定{block:???}
标签是什么,但我猜想JEditorPane不会识别它们。
据我所知,在使用有序列表时需要使用<li>
标记。