我在WordPress上有一个WordPress博客。com。发布内容时,我在<code
tags,有什么方法可以更好地格式化它吗?例如语法突出显示和行号等?
我所拥有的一个例子是here, 尽管我有代码标签,但它似乎并没有使它比普通文本更具可读性
我是否因为选择了免费的选择而受到限制?
最合适的回答,由SO网友:hannit cohen 整理而成
wordpress。com支持代码语法高级化。您可以在此处阅读所有相关内容:http://en.support.wordpress.com/code/posting-source-code/
对于您的特定示例,请使用:
[sourcecode language="java"]
package com.jameselsey.domain;
import java.util.ArrayList;
import java.util.List;
import com.google.android.maps.GeoPoint;
import android.app.Application;
/**
* This is a global POJO that we attach data to which we
* want to use across the application
* @author James Elsey
*
*/
public class GlobalState extends Application
{
private String testMe;
public String getTestMe() {
return testMe;
}
public void setTestMe(String testMe) {
this.testMe = testMe;
}
}
[/sourcecode]