"""Input file to test angle bracket bug (https://github.com/bazelbuild/skydoc/issues/186)""" def bracket_function(name): """Dummy docstring with . This rule runs checks on . Args: name: an arg with **formatted** docstring. Returns: some brackets """ pass bracketuse = provider( doc = "Information with ", fields = { "foo": "A string representing ", "bar": "A string representing bar", "baz": "A string representing baz", }, ) def _rule_impl(ctx): return [] my_anglebrac = rule( implementation = _rule_impl, doc = "Rule with ", attrs = { "useless": attr.string( doc = "Args with some tags: , ", default = "Find ", ), }, )