diff --git a/README.md b/README.md index 095f97f8..d3bfacfa 100644 --- a/README.md +++ b/README.md @@ -1047,6 +1047,7 @@ filters: - value_split: Value_Split This filter extracts information from the value and fills other fields. I.e. extracts the tolerance and puts it in the `tolerance` field. + Usage [example](https://inti-cmnb.github.io/kibot-examples-1/value_split/). * Valid keys: - `autoplace`: [boolean=true] Try to figure out the position for the added fields. - `autoplace_mechanism`: [string='bottom'] [bottom,top] Put the new field at the bottom/top of the last field. diff --git a/kibot/fil_value_split.py b/kibot/fil_value_split.py index ca32d4e8..0041e296 100644 --- a/kibot/fil_value_split.py +++ b/kibot/fil_value_split.py @@ -17,7 +17,8 @@ logger = log.get_logger() class Value_Split(BaseFilter): # noqa: F821 """ Value_Split This filter extracts information from the value and fills other fields. - I.e. extracts the tolerance and puts it in the `tolerance` field """ + I.e. extracts the tolerance and puts it in the `tolerance` field. + Usage [example](https://inti-cmnb.github.io/kibot-examples-1/value_split/) """ def __init__(self): super().__init__() self._is_transform = True