1

我是 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 "]"

所有这些都失败了。

无论我尝试什么,我似乎都无法让它识别结束标签。

4

1 回答 1

1

我发现了这个问题:https ://github.com/nathansobo/treetop/issues/25 ,它似乎已经回答了我的问题。

我的语法不包含允许打开或关闭标签的顶级规则,因此甚至没有考虑第二种可能性:

grammar BBCode
  rule document
    (open_tag / close_tag)
  end

  rule open_tag
    ("[" tag_name "]")
  end

  rule tag_name
    [a-zA-Z\*]+
  end

  rule close_tag
    ("[/" tag_name "]")
  end
end
于 2012-12-07T01:51:08.227 回答