本文整理汇总了C++中CNode::attribute方法的典型用法代码示例。如果您正苦于以下问题:C++ CNode::attribute方法的具体用法?C++ CNode::attribute怎么用?C++ CNode::attribute使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CNode
的用法示例。
在下文中一共展示了CNode::attribute方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: special_tag_a
std::string special_tag_a(const HtmlToMarkdown& htmlToMarkdown, CNode node) {
std::string text = htmlToMarkdown(node);
std::string href = node.attribute("href");
translate_link_address(text);
translate_link_address(href);
return "[" + text + "](" + href + ")";
}
示例2: operator
void CTagCn::operator ()(const CNode& node, CTreeNode& tree_node)
{
(*this)(node);
checkAttributes(node, { "type" });
string attr = node.attribute("type").as_string();
CNode child = node.first_child();
if (attr == "real" || attr == "")
{
hasNChilds(node, 1);
nodeIsReal(child, tree_node.Step("cn"));
return;
}
}
示例3: special_tag_img
std::string special_tag_img(const HtmlToMarkdown& htmlToMarkdown, CNode node) {
std::string alt = node.attribute("alt");
std::string src = node.attribute("src");
auto my_emoji = emoji.find(src);
if (my_emoji == emoji.end()) {
emoji_not_found[src]++;
return "![" + alt + "](" + src + ")";
}
else {
return my_emoji->second;
}
}