[DOCs] Added link to the value_split example
This commit is contained in:
parent
c47f9b7639
commit
6a1d6d313c
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue