我是 Treetop 的新手,并且有一个非常简单的语法,我无法正常工作。我有一些测试:
it "parses a open tag as some text surrouded by brackets" do
document = "[b]"
Parser.parse(document).should_not be_nil
end
it "parses a close tag as a tag with a / preceeding the tag name" do
document = '[/b]'
Parser.parse(document).should_not be_nil
end
这是我的语法:
grammar BBCode
rule open_tag
"[" tag_name "]"
end
rule tag_name
[a-zA-Z\*]+
end
rule close_tag
"[/" tag_name "]"
end
end
第一次测试通过,第二次测试失败。我还尝试了这些替代规则:
"[" [\/] tag_name "]"
"[" "/" tag_name "]"
"[\/" tag_name "]"
所有这些都失败了。
无论我尝试什么,我似乎都无法让它识别结束标签。