本文整理汇总了Java中org.sweble.wikitext.parser.nodes.WtBold类的典型用法代码示例。如果您正苦于以下问题:Java WtBold类的具体用法?Java WtBold怎么用?Java WtBold使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
WtBold类属于org.sweble.wikitext.parser.nodes包,在下文中一共展示了WtBold类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getTex
import org.sweble.wikitext.parser.nodes.WtBold; //导入依赖的package包/类
private String getTex(WtNode i, boolean force) {
if (i.get(0) instanceof WtText) {
String content = ((WtText) i.get(0)).getContent().trim();
content = TextExtractorMapper.unescape(content);
String tex = wiki2Tex(content);
if (tex.length() > 0 && (
content.length() == 1
|| (content.length() < 100 && !content.equals(tex)))) {
Multiset<String> idents;
try {
idents = TexInfo.getIdentifiers(tex, texInfoUrl);
} catch (XPathExpressionException | ParserConfigurationException | IOException
| SAXException | TransformerException ignored) {
return null;
}
if (idents.size() == 0 && !force) {
return null;
}
if (i instanceof WtBold) {
tex = "\\mathbf{" + tex + "}";
}
return tex;
}
if (force) {
return tex;
}
}
return null;
}
示例2: visit
import org.sweble.wikitext.parser.nodes.WtBold; //导入依赖的package包/类
public void visit(WtBold b) {
if (detectHiddenMath(b)) {
return;
}
write("\"");
iterate(b);
write("\"");
}
示例3: visit
import org.sweble.wikitext.parser.nodes.WtBold; //导入依赖的package包/类
public void visit(WtBold b) {
bool_has_extra_information = true;
extra_information = ExtraInformations.extraBoldAppend;
if (b.size() > 0 && b.get(0).size() > 1) {
resetSettingsBeforeReturn(); // only reset,
// System.err.println(b.size() + " " + b.get(0).size() + " " +
// b.get(0).toString());
}
iterate(b);
}
示例4: visit
import org.sweble.wikitext.parser.nodes.WtBold; //导入依赖的package包/类
public void visit(WtBold n)
{
p.indentAtBol("<b>");
p.incIndent();
iterate(n);
p.decIndent();
p.indentAtBol("</b>");
}