##// END OF EJS Templates
doc: document that labels must have a dot in them to have an effect...
doc: document that labels must have a dot in them to have an effect I noticed that the `hg topics` template has a bare `topic` label with no dot, and that makes it useless, as such a label will never receive any effect by the colour extension. This dot has been required for a long time, at least since 2011, but we never formally documented it!

File last commit:

r50538:e1c586b9 default
r52283:92c77659 default
Show More
filters.pyi
6 lines | 215 B | text/x-python | PythonLexer
Matt Harbison
attr: vendor 22.1.0...
r50538 from typing import Any, Union
from . import Attribute, _FilterType
def include(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...
def exclude(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...